12.07.2010, 00:50
(
Последний раз редактировалось Hal; 12.07.2010 в 01:29.
)
Quote:
I suppose that you could try the following.
Create a global variable " Код:
new tempmapper[MAX_PLAYERS]; Then create a command to set the variable on the player from 0 to 1. (Dcmd as default) Код:
dcmd_makemapper(playerid,params[]) { if(IsPlayerAdmin,playerid) if(!strlen(params)) { SendClientMessage(playerid,color,"Usage: /makemapper [player]"); return 1; } tempmapper[params] 1; return 1; } (Code might be dodgy) |