18.01.2011, 14:23
(
Последний раз редактировалось Patrik356b; 18.01.2011 в 14:23.
Причина: Too slow :o
)
make a player loop, assign the excluded player to a variable, and you get something like this:
pawn Код:
// When the player find the moneybag do this:
finder = playerid
//- Other part of script -//
for(new i=0; i < MAX_PLAYERS; i++)
{
if(finder != i)
{
// Do something here
}
}