HX3 Foren

HX3 Foren (https://hx3.de/)
-   Multiplayer (https://hx3.de/multiplayer-164/)
-   -   Signatures (https://hx3.de/multiplayer-164/signatures-20849/)

S@ndviper 10.07.2011 07:47

Signatures
 
Hallo liebe leute,
ich habe da mal eine Frage.ICh habe auf unseren Servern die verify Signature eingestellt. Siehe hier:

// JOINING RULES
checkfiles[] = {}; // Outdated.
maxPlayers = 64; // Maximum amount of players. Civilians and watchers, beholder, bystanders and so on also count as player.
kickDuplicate = 1; // Each ArmA version has its own ID. If kickDuplicate is set to 1, a player will be kicked when he joins a server where another player with the same ID is playing.
verifySignatures = 1; // Verifies the players files by checking them with the .bisign signatures. Works properly from 1.08 on
equalModRequired = 0;


Seit dem,werden alle Spieler bei dennen die Signatur nicht stimmt sofort gebannt.Was natürlich nicht so toll ist,kicken würde ja reichen. Wo und wie stelle ich es ein,das spieler nur gekickt werden?

Vieleicht kann mir jemand mal die beste einstellung sagen?!


Danke und Gruß Viper

Moerderhoschi 10.07.2011 08:56

Code:

// some ArmA specific stuff - signature verification
onUnsignedData = "kick (_this select 0)"; // unsigned data detected
onHackedData = "ban (_this select 0)"; // tampering of the signature detected
onDifferentData = ""; // data with a valid signature, but different version than the one present on server detected
BattlEye = 1; //Server to use BattlEye system

Die beste server.cfg haengt ganz vom Individuum ab. Einfach mal im BIwiki bei server.cfg schauen und selber entscheiden.

link: server.cfg - Bohemia Interactive Community


gruß

hoschi


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:46 Uhr.

Angetrieben durch vBulletin, Entwicklung von Philipp Dörner & Tobias


SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119