08.03.2017, 22:26
Can someone please explain to me what this does? (It seems illogical to me when I try to read it like a python script, I haven't done Pawn in a long time).
Also, this seems to return numbers. Doesn't string[x] return the indexed letter?
Thanks in advance!
Also, this seems to return numbers. Doesn't string[x] return the indexed letter?
Thanks in advance!
Код:
public test(string[]) { for(new x=0; x < strlen(string); x++) { string[x] += (3^x) * (x % 15); //This line specifically if(string[x] > (0xff)) { string[x] -= 256; } } return 1; }