16.12.2010, 12:35
Код:
printf("PAGE: %i", SetPVarInt(playerid, "Browsing_Page", GetPVarInt(playerid, "Browsing_Page") +2));
printf("PAGE: %i", SetPVarInt(playerid, "Browsing_Page", GetPVarInt(playerid, "Browsing_Page") +2));
SetPVarInt(playerid, "Browsing_Page", GetPVarInt(playerid, "Browsing_Page") +2)); printf("PAGE: %i", GetPVarInt(playerid, "Browsing_Page");
SetPVarInt(playerid, "Browsing_Page", GetPVarInt(playerid, "Browsing_Page") +2);
printf("PAGE: %i", GetPVarInt(playerid, "Browsing_Page"));
new string[128]; format(string,sizeof(string),"PAGE: %i",GetPVarInt(playerid, "Browsing_Page")); printf(string);
hm.. formatting before is not needed, we know that, but anyways, formatting maybe? you know that this will work for sure, so:
Код:
new string[128]; format(string,sizeof(string),"PAGE: %i",GetPVarInt(playerid, "Browsing_Page")); printf(string); |