Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Php Question

Junior Spellweaver
Joined
Jan 15, 2013
Messages
153
Reaction score
4
I have a doubt,
I wonder how to turn this to php.

private static void byteEncrypt(byte data[]){
for(int i = 0 ; i < BYTE.LENGHT ; i++){
if(i % 2 == 0){
data ^= XOR0;
}else{
data ^= XOR1;
}
}
}

thx
 
Back
Top