16.04.2012, 17:51
If you're expecting "getarg( i , idx);" to return a single letter/character, then yes.
Should return
test
test
pawn Код:
string[5];
string="test";
print(string);
string[0]=116;
string[1]=101;
string[2]=115;
string[3]=116;
string[4]=EOS;
print(string);
test
test

