Quote:
Originally Posted by CuervO
Different pages, display a min and a max. This is an example from my scripts:
pawn Код:
SetPVarInt(playerid, "listviewingmax", 10); SetPVarInt(playerid, "listviewingmin", 0);
for(new i = GetPVarInt(playerid,"listviewingmin"); i <= GetPVarInt(playerid,"listviewingmax"); i ++) { //code }
Basically that will loop from the min possibility until the max possibility, this case from 0-10. Add a next or something and increase both the min and max then re display it again.
|
Sorry I don't really follow? Could you maybe explain in a little more detail?