Search Results
/gcolor is command for gang color it will not spawn you in your team spawn problem is in command /spawnme show the code of /spawnme command
105
change PHP код: format(PlayerInfo[playerid][Status], 11, "General Administrator");  to PHP код: format(PlayerInfo[playerid][Status], 25, "General Administrator"); 
198
1 question why you are using this code for getting player cash? PHP Code: Dinero(playerid, Dinero) //542 line {     new              Dinero = GetPlayerMoney(playerid)    Â...
80
PHP Code: new countvar=4;//Top on script forward CountDOwn(); public CountDown() {        if(countvar != 0)        {                 countvar--;       ...
441
PHP код: if(PlayerInfo[iPlayer][power] > PlayerInfo[playerid][power]) return KickAdmin(playerid); 
91
Try this PHP код: CMD:asellallhouses(playerid, params[]) {     if (PlayerInfo[playerid][pAdmin] >= 4)     {         new playername[MAX_PLAYER_NAME];         GetP...
155
Working fine for me i have tested this code give a try with this example PHP код: //on top of script new zone1;  then PHP код: public OnGameModeInit() {     zone1 ...
177
Try to flash with different color like PHP код: GangZoneFlashForPlayer(playerid, spk, 0xFF0000FF); 
177
try this PHP код: stock SetPlayerPosaoCP(playerid, Float:X, Float:Y, Float:Z, Float:size) {     if(PosaoCP[playerid])     {     DestroyDynamicCP(PosaoCP[playerid]);     } ...
83
change this PHP код:     foreach(new i : Player)     {         if(PlayerInfo[i][pHelper] > 0 && !PlayerInfo[i][pToggleHelper] || PlayerInfo[i][pAdmin] >...
139
something like that PHP код: public OnPlayerSpawn(playerid) { SetPlayerVirtualWorld(playerid, playerid+1); return 1; }  It will assign virtual world id with playerid+1 like if anyone ...
89
PHP код: if(PlayerInfo[playerid][pHelper] < 1 && PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use th...
139
try this PHP код: CMD:hc(playerid, params[]) {     if(PlayerInfo[playerid][pHelper] < 1 || PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_GREY, ...
139
Try this PHP код: enum MapInfo {         Float:XPOS,         Float:YPOS,         Float:ZPOS }; new Float:gMapSpawns1[][MapInfo] = {         //Coords   Â...
196
Edit Try this PHP код: CMD:c(playerid, params[]) { if(!IsPlayerAnyClanMember(playerid)) return SendClientMessage(playerid, -1, "Error: You aren't in any clan."); if(isnull(params))Â...
98
Tested on my server working perfect give a try PHP код: CMD:setvip(playerid, params[]) {          new months,str[128],ID;          if(!IsPlayerAdmin(playerid) || pInfo[pla...
311
Command: PHP код: CMD:loc(playerid, params[])  {      new giveplayerid, string[256], giveplayer[25];      if(sscanf(params, "u", giveplayerid)) return SendClientMessage2(play...
225
Replacement PHP код: Houses[i][EHousePickup] = CreateDynamicPickup(Houses[i][EHouseOwnerSQLID]>0?19522:1273,16,Houses[i][EHouseX], Houses[i][EHouseY], Houses[i][EHouseZ]);  to PH...
125
try this PHP код: new Float: PlayerPosX[MAX_PLAYERS], Float: PlayerPosY[MAX_PLAYERS], Float:PlayerPosZ[MAX_PLAYERS];//AT top CMD:spec(playerid,params[]) {     new Float:x, Floa...
94