25.01.2013, 19:54
i use stevo's gamemode and i added a command but when i try it it say unknown command
Код:
dcmd_gunpack(playerid,params[]) { #pragma unused params if(IsRegularPlayer[playerid] != 1337) { SendClientMessage(playerid,COLOR_ERROR,"You must be a regular player to use GunPack."); return 1; } if(IsRegularPlayer[playerid] == 1337) { GivePlayerWeapon(playerid, 26, 1000); return 1; } return 1; }