11.03.2014, 00:21
Different pages, display a min and a max. This is an example from my scripts:
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.
pawn Код:
SetPVarInt(playerid, "listviewingmax", 10);
SetPVarInt(playerid, "listviewingmin", 0);
for(new i = GetPVarInt(playerid,"listviewingmin"); i <= GetPVarInt(playerid,"listviewingmax"); i ++)
{
//code
}