Jump to content

SpriteTV

Membru
  • Posts

    65
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by SpriteTV

  1. Deci am urmat un tutorial pentru o comanda de biz. Intru pe server tot-ul perfect dau /createbiz apare inceat frumos mesaj etc etc si cand dau /createbiz 24 3000000 si level 10 zice ca comanda nu este pe server. Comanda este cam asa CMD:createbiz(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] < 6) return 1; new type, value, level, idd = bussines+1, Float: Pos[3], query[256]; if(sscanf(params, "iii", type, value, level)) { SCM(playerid, COLOR_GREY, "Syntax: {FFFFFF}/createbiz <type> <value> <level>"); SCM(playerid, COLOR_GREY, "(1) Banca, (2) Gun Shop, (3) Club, (4) Sex Shop, (5) Casino, (6) 24/7, (7) Burger Shot, (8) Gym"); SCM(playerid, COLOR_GREY, "(9) Pizza, (11) Binco, (12) Gas Station, (13) PNS*, (14) Cluckin Bell, (15) CNN, (16) Tuning*"); return 1; } if(type == 10 || type < 1) return SCM(playerid, COLOR_GREY, "Invalid type!"); GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]); switch(type) { case 1: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '2306', '-16', '27', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 2306; BizzInfo[idd][bExitY] = -16; BizzInfo[idd][bExitZ] = 27; } case 2: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '316', '-142', '1000', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 316; BizzInfo[idd][bExitY] = -142; BizzInfo[idd][bExitZ] = 1000; } case 3: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '-794.942', '490.782', '1376.2', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = -794.942; BizzInfo[idd][bExitY] = 490.782; BizzInfo[idd][bExitZ] = 1376.2; } case 4: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '-100.403', '-24.3921', '1000.72', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = -100.403; BizzInfo[idd][bExitY] = -24.3921; BizzInfo[idd][bExitZ] = 1000.72; } case 5: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '2015.45', '1017.09', '996.875', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 2015.45; BizzInfo[idd][bExitY] = 1017.09; BizzInfo[idd][bExitZ] = 996.875; } case 6: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '-31.0246', '-91.3283', '1003.55', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = -31.0246; BizzInfo[idd][bExitY] = -91.3283; BizzInfo[idd][bExitZ] = 1003.55; } case 7: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '363.134', '-74.8469', '1001.51', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 363.134; BizzInfo[idd][bExitY] = -74.8469; BizzInfo[idd][bExitZ] = 1001.51; } case 8: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '772.112', '-3.89865', '1000.73', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 772.112; BizzInfo[idd][bExitY] = -3.89865; BizzInfo[idd][bExitZ] = 1000.73; } case 9: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '372.54', '-133.009', '1001.49', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 372.54; BizzInfo[idd][bExitY] = -133.009; BizzInfo[idd][bExitZ] = 1001.49; } case 11: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '207.738', '-109.02', '1005.13', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 207.738; BizzInfo[idd][bExitY] = -109.02; BizzInfo[idd][bExitZ] = 1005.13; } case 12: format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Sbiz`) VALUES ('%f', '%f', '%f', '0', '0', '0', '%d', '%d', '%d', '1', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); //case 13: format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Sbiz`) VALUES ('%f', '%f', '%f', '0', '0', '0', '%d', '%d', '%d', '1', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); case 14: { format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`) VALUES ('%f', '%f', '%f', '364.942', '-11.0787', '1001.85', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); BizzInfo[idd][bExitX] = 364.942; BizzInfo[idd][bExitY] = -11.0787; BizzInfo[idd][bExitZ] = 1001.85; } case 15: format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Sbiz`) VALUES ('%f', '%f', '%f', '0', '0', '0', '%d', '%d', '%d', '1', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); case 16: format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Sbiz`) VALUES ('%f', '%f', '%f', '0', '0', '0', '%d', '%d', '%d', '1', '%d')", Pos[0], Pos[1], Pos[2], level, value, type, BizInteriorID(type)); } mysql_tquery(SQL, query, "", ""); format(query, sizeof(query), "UPDATE `bizz` SET `Virtual`='%d' WHERE `ID`='%d'", idd, idd); mysql_tquery(SQL, query, "", ""); BizzInfo[idd][bEntranceX] = Pos[0]; BizzInfo[idd][bEntranceY] = Pos[1]; BizzInfo[idd][bEntranceZ] = Pos[2]; BizzInfo[idd][bBuyPrice] = value; BizzInfo[idd][bLevelNeeded] = level; BizzInfo[idd][bVirtual] = idd; BizzInfo[idd][bType] = type; BizzInfo[idd][bInterior] = BizInteriorID(type); if(type >= 12 && type != 14) BizzInfo[idd][bSbiz] = 1; new PropertyString[256]; DestroyDynamic3DTextLabel(BizzLabel[idd]); format(PropertyString, sizeof(PropertyString),"{0068CF}%s \n{EEEEEE}Business {0068CF}#%d \n{0068CF}This Business is for sale(/buybusiness) ! \n {EEEEEE}Price: {0068CF}%s \n{EEEEEE}Level: {0068CF}%d %s",BizzInfo[idd][bMessage],idd,FormatNumber(BizzInfo[idd][bBuyPrice]),BizzInfo[idd][bLevelNeeded]); BizzLabel[idd] = CreateDynamic3DTextLabel(PropertyString ,0x0066FFCC,BizzInfo[idd][bEntranceX], BizzInfo[idd][bEntranceY], BizzInfo[idd][bEntranceZ],25, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, -1, -1, -1, 100.0); CreateDynamicPickup(1239, 1, BizzInfo[idd][bEntranceX], BizzInfo[idd][bEntranceY], BizzInfo[idd][bEntranceZ]); pickups++; bussines++; if(BizzInfo[idd][bType] == 1) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],52,0,-1,-1,-1,750.0); //Bank if(BizzInfo[idd][bType] == 2) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],18,0,-1,-1,-1,750.0); //GunShop if(BizzInfo[idd][bType] == 3) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],49,0,-1,-1,-1,750.0); //Bars if(BizzInfo[idd][bType] == 4) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],38,0,-1,-1,-1,750.0); //Sex Shop if(BizzInfo[idd][bType] == 5) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],25,0,-1,-1,-1,750.0); //Casino if(BizzInfo[idd][bType] == 6) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],17,0,-1,-1,-1,750.0); //24/7 if(BizzInfo[idd][bType] == 7) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],10,0,-1,-1,-1,750.0); //Burger Shot if(BizzInfo[idd][bType] == 8) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],54,0,-1,-1,-1,750.0); //Gym if(BizzInfo[idd][bType] == 9) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],29,0,-1,-1,-1,750.0); //Pizza if(BizzInfo[idd][bType] == 10) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],51,0,-1,-1,-1,750.0); //Rent Car if(BizzInfo[idd][bType] == 11) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],45,0,-1,-1,-1,750.0); //Clothes if(BizzInfo[idd][bType] == 12) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],27,0,-1,-1,-1,750.0); //Gas Station if(BizzInfo[idd][bType] == 13) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],63,0,-1,-1,-1,750.0); //PNS if(BizzInfo[idd][bType] == 14) CreateDynamicMapIcon(BizzInfo[idd][bEntranceX],BizzInfo[idd][bEntranceY],BizzInfo[idd][bEntranceZ],14,0,-1,-1,-1,750.0); //Cluckin Bell new string[128]; format(string, sizeof(string), "[@@ %d @@]%f, %f, %f, [$%s, %d lvl, %d int, %d type]", idd, Pos[0], Pos[1], Pos[2], FormatNumber(value), level, BizInteriorID(type), type); SCM(playerid, COLOR_YELLOW, string); return 1; }
  2. Nu recomand. index-ul il puteti lua direct cu inspect element nu contine nici un script php.
  3. Boss nu este vorba de 5 euro. Este vorba de mai multi bani. de 35 de euro.
  4. Eu spun sa stergi acest topic. Te faci pur si simplu de ras. De ce ? Pentru ca index-ul il poti lua cu usurinta cu inspect element. si sa adaugi tu php-urile cu jucatori conectati etc etc. Nu recomand. Din ce am vazut in video tu nu ai nimic ce tine de php.
  5. Salut boss frumos gamemode dar am o problema cu panel-ul pe care la-i pus tu. @DanielAdv http://prntscr.com/kilwnd
  6. Salut nu recomand firma de host clever-host are un staff mai pe scurt de tot rahat-ul. Am comandat la ei un host nu sti-am nimic de ei. si astept returnarea banilor si acu. Si se pare ca si acu sunt total ignorat. Va las niste ss-uri mai jos http://prntscr.com/ki9rw3 http://prntscr.com/ki9ryq http://prntscr.com/ki9s10 Astept si eu pareri despre firma asta de host.
  7. imi da la fel else finalinterest = interest / 2; //PayDaYTD format(string3, sizeof(string3),"PAYDAY~n~Ore jucate: +%0.2f~n~Paycheck: $%s~n~Bank: $%s~n~Tax: $%s~n~Rent: $%s~n~Total money: $%d",PlayerInfo[pPayDay]/60+1,FormatNumber(checks), FormatNumber(PlayerInfo[pAccount]),FormatNumber(TaxValue),FormatNumber(rent), checks-TaxValue); //format(string3, sizeof(string3),"PAYDAY~n~Ore jucate: +%0.2f~n~",PlayerInfo[i][pPayDay]/60+1); //format(string3, sizeof(string3),"PAYDAY~n~Ore jucate: +%0.2f~n~Paycheck: $%s~n~Bank: $%s~n~Tax: $%s~n~Rent: $%s~n~Total money: $%d",PlayerInfo[i][pPayDay]/60+1, FormatNumber(checks), FormatNumber(PlayerInfo[i][pAccount]), //FormatNumber(TaxValue), FormatNumber(rent[i]), checks-TaxValue); PlayerTextDrawSetString(i, PayDayTD, string3); PlayerTextDrawShow(i, PayDayTD); format(string, sizeof(string), "~y~payday"); GameTextForPlayer(i, string, 5000, 1); /*{ finalinterest = interest / 2; new stringsu[256]; format(stringsu,sizeof(stringsu),"Ai primit doar jumatate din dobanda de la banca pentru ca ai jucat doar %d minute din aceasta ora (31 necesare pentru dobanda intreaga.",PlayerInfo[i][pPayDay]/60+1); SendSplitMessage(i, COLOR_LIGHTBLUE, stringsu); } PlayerInfo[i][pExp] += 1; PlayerInfo[i][pAccount] += finalinterest; format(string, sizeof(string), "Paycheck: $%s | Bank balance: $%s | Bank interest: $%s | Tax: $%s (10 percent)", FormatNumber(checks), FormatNumber(PlayerInfo[i][pAccount]), FormatNumber(finalinterest), FormatNumber(TaxValue)); SendClientMessage(i, COLOR_GREY, string); format(string3, sizeof(string3), "Rent: $%s | Total earnings: $%d", FormatNumber(rent[i]), checks-TaxValue);*/ //SendClientMessage(i, COLOR_GREY, string3); //SendClientMessage(i, COLOR_TEAL, "----------------------------------------------------------------------------"); C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : warning 217: loose indentation C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 001: expected token: ",", but found "�" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 029: invalid expression, assumed zero C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 029: invalid expression, assumed zero C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors. [Finished in 11.4s with exit code 1] [cmd: ['pawncc.exe', '-i includes', 'C:\\Users\\SpriteTV\\Desktop\\GMROPLAYERS\\gamemodes\\RoPlayersGM.pwn', '-;+']] [dir: C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes] [path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\SpriteTV\AppData\Local\Microsoft\WindowsApps;]
  8. mesi de atentie dar tot imi da pe linia asta format(string3, sizeof(string3),"PAYDAY~n~Ore jucate: +%0.2f~n~Paycheck: $%s~n~Bank: $%s~n~Tax: $%s~n~Rent: $%s~n~Total money: $%d",PlayerInfo[i][pPayDay]/60+1,FormatNumber(checks), FormatNumber(PlayerInfo[i][pAccount]), FormatNumber(TaxValue),FormatNumber(rent[i]), checks-TaxValue); C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : warning 217: loose indentation Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors. C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 001: expected token: ",", but found "�" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 029: invalid expression, assumed zero C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 029: invalid expression, assumed zero C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : fatal error 107: too many error messages on one line Compilation aborted.[Finished in 10.4s with exit code 1] [cmd: ['pawncc.exe', '-i includes', 'C:\\Users\\SpriteTV\\Desktop\\GMROPLAYERS\\gamemodes\\RoPlayersGM.pwn', '-;+']] [dir: C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes] [path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\SpriteTV\AppData\Local\Microsoft\WindowsApps;]
  9. Salut am incercat sa fac si eu dupa tutorial-ul lui Edison cu Payday-ul pe textdraw. Si nu inteleg ce nu am facut bine ce am gresit.. Erori:+ Linile. format(string3, sizeof(string3),"PAYDAY~n~Ore jucate: +%0.2f~n~Paycheck: $%s~n~Bank: $%s~n~Tax: $%s~n~Rent: $%s~n~Total money: $%d"PlayerInfo[i][pPayDay]/60+1,FormatNumber(checks), FormatNumber(PlayerInfo[i][pAccount]), FormatNumber(TaxValue),FormatNumber(rent[i]), checks-TaxValue); PlayerTextDrawSetString(i, PayDayTD, string3); PlayerTextDrawShow(i, PayDayTD); C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : warning 217: loose indentation C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : error 001: expected token: "-string end-", but found "-identifier-" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197) : warning 215: expression has no effect C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20197 -- 20198) : warning 215: expression has no effect C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20198) : error 001: expected token: ";", but found ")" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20198) : error 029: invalid expression, assumed zero C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(20198) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors. [Finished in 10.3s with exit code 1] [cmd: ['pawncc.exe', '-i includes', 'C:\\Users\\SpriteTV\\Desktop\\GMROPLAYERS\\gamemodes\\RoPlayersGM.pwn', '-;+']] [dir: C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes] [path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\SpriteTV\AppData\Local\Microsoft\WindowsApps;]
  10. Ba vezi ca nu merge linku iti da aim bot si are keylogger ..
  11. Salut am transferat si eu comand ain CMD si nu merge imi zice ca comanda nu este pe server CMD:incepemunca(playerid, params[]) { if(IsPlayerInRangeOfPoint(playerid, 3, -87.8051,-1212.2844,2.8906)) { if(PasJob[playerid] == 0) { ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "{FFFFFF}Taietor de lemne", "{FFFFFF}Timp Lucru: {FF8000}7 Minute\n{FFFFFF}Suma Castigata: {FF8000}100.000$","Inchide", ""); skinjob[playerid] = GetPlayerSkin(playerid); SetPlayerSkin(playerid, 1); PasJob[playerid] = 1; SendClientMessage(playerid, 0xFFFFFFAA, "Intra intr-un vehicul pentru a incepe."); } else { SendClientMessage(playerid, 0xFFFFFFAA, "Nu esti in cabina de schimbare!"); return 1; }
  12. C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(18437) : error 017: undefined symbol "string" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(18437) : error 017: undefined symbol "string" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(18437) : error 029: invalid expression, assumed zero C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(18437) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors. [Finished in 10.1s with exit code 1] [cmd: ['pawncc.exe', '-i includes', 'C:\\Users\\SpriteTV\\Desktop\\GMROPLAYERS\\gamemodes\\RoPlayersGM.pwn', '-;+']] [dir: C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes] [path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\SpriteTV\AppData\Local\Microsoft\WindowsApps;] EDIT:AM REZOLVAT PROBLEMA DAR ACU CAND ASA NU RAMAN BANI II DA SI DUPA MI SCAD LA LOC. Ma poti ajuta. Ms ? Comanda dupa cum am stiut sa o fac CMD:goleste(playerid, params[]) { if(!IsPlayerInRangeOfPoint(playerid,5.0,-670.1496,969.9528,12.1328)) return SendClientMessage(playerid,0xFF444499,"SERVER : Depoziteaza mierea in hambar te rog!"); if(!LapteVaca[playerid]) return SendClientMessage(playerid,-1, "SERVER : {FF00FF}Nu ai lapte! {00FF00}Dute si mulge de la o vaca."); GivePlayerMoney(playerid, 30000); // <<<<<<<<<< MODIFICA AICI SUMA DE LA JOB SendClientMessage(playerid,-1, "SERVER : {FFFFFF}Bravo! Ai golit laptele si ai primit: 30.000$ de la fermierul ERIK"); LapteVaca[playerid] = !LapteVaca[playerid]; ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0); new str2[128]; mysql_format(SQL,str,sizeof(str),"UPDATE users SET `Money`='%d' WHERE `name`='%s'",GetPlayerCash([pNormalName]); mysql_tquery(SQL,str2,"",""); return 1; }
  13. pai comanda am luat`o dupa forum de aici postat de un baiat la fs
  14. C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24541 -- 24542) : error 017: undefined symbol "bStatic" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24551) : error 017: undefined symbol "bGas" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24551) : warning 215: expression has no effect C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24558) : error 017: undefined symbol "bLevel" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24558) : warning 215: expression has no effect C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24562) : error 017: undefined symbol "bStatic" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24562) : error 017: undefined symbol "bStatic" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24562) : warning 202: number of arguments does not match definition C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24562) : error 001: expected token: "]", but found ";" C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(24562) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 7 Errors. [Finished in 11.0s] Am luat si eu comanda lui edison pentru a crea un biz si se pare ca am niste problem erori. comanda cu tot cu functile care le-am gasit. function BizWithType(type) { for(new i = 1; i < sizeof(BizzInfo); i++) { if(BizzInfo[i][bType] == type) return i; } return 0; } CMD:createbiz(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] < 6) return 1; new type, value, level, idd = bussines+1, Float: Pos[3], query[512]; if(sscanf(params, "iii", type, value, level)) { SCM(playerid, COLOR_GREY, "Syntax: {FFFFFF}/createbiz <type> <value> <level>"); SCM(playerid, -1, "Types: Banca (1), Gun Shop (2), Club (3), Restaurant (4), Sex shop (5), 24/7 (6), Binco (7), Burger (8), Casino (9)"); SCM(playerid, -1, "CNN (10), Gas Station (17), PNS (19), Pizza (21)"); return 1; } if(type > 10 && type < 17 || type == 20 || type > 21 || type < 1) return SCM(playerid, COLOR_GREY, "Invalid type!"); GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]); new biz = BizWithType(type); // daca e benzinarie format(query, sizeof(query), "INSERT INTO `bizz` (`EntranceX`, `EntranceY`, `EntranceZ`, `ExitX`, `ExitY`, `ExitZ`, `LevelNeeded`, `BuyPrice`, `Type`, `Interior`, `Static`) VALUES ('%f', '%f', '%f', '%f', '%f', '%f', '%d', '%d', '%d', '%d', '%d')", Pos[0], Pos[1], Pos[2], BizzInfo[biz][bExitX], BizzInfo[biz][bExitY], BizzInfo[biz][bExitZ], level, value, type, BizzInfo[biz][bInterior], BizzInfo[biz][bStatic]); mysql_tquery(SQL, query, "", ""); format(query, sizeof(query), "UPDATE `bizz` SET `Virtual`='%d' WHERE `ID`='%d'", idd, idd); mysql_tquery(SQL, query, "", ""); new i = idd; if(type == 17) { format(query, sizeof(query), "UPDATE `bizz` SET `Gas`='%d' WHERE `ID`='%d'", 1, idd); mysql_tquery(SQL, query, "", ""); BizzInfo[i][bGas] = 1; } BizzInfo[idd][bExitX] = BizzInfo[biz][bExitX]; BizzInfo[idd][bExitY] = BizzInfo[biz][bExitY]; BizzInfo[idd][bExitZ] = BizzInfo[biz][bExitZ]; BizzInfo[idd][bEntranceX] = Pos[0]; BizzInfo[idd][bEntranceY] = Pos[1]; BizzInfo[idd][bEntranceZ] = Pos[2]; BizzInfo[idd][bBuyPrice] = value; BizzInfo[idd][bLevel] = level; BizzInfo[idd][bVirtual] = idd; BizzInfo[idd][bType] = type; BizzInfo[idd][bInterior] = BizzInfo[biz][bInterior]; BizzInfo[idd][bStatic] = BizzInfo[biz][bStatic]; BizzInfo[i][bPickup] = CreateDynamicPickup(1239, 23, BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ]); switch(BizzInfo[i][bType]) { case 1: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],52,0,-1,0,-1,500.0); // banca case 2: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],6,0,-1,0,-1,500.0); // gun shop case 3: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],49,0,-1,0,-1,500.0); // club case 4: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],50,0,-1,0,-1,500.0); // restaurant case 5: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],38,0,-1,0,-1,500.0); // sexshop case 6: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],17,0,-1,0,-1,500.0); // 24/7 case 7: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],45,0,-1,0,-1,500.0); // binco case 8: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],10,0,-1,0,-1,500.0); // burger case 9: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],25,0,-1,0,-1,500.0); // casino case 10: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],16,0,-1,0,-1,500.0); // cnn //case 11: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],16,0,-1,0,-1,500.0); // moto case 12: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],55,0,-1,0,-1,500.0); // car case 13: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],23,0,-1,0,-1,500.0); // cs //case 14: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],23,0,-1,0,-1,500.0); // furniture case 15: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],63,0,-1,0,-1,500.0); // car color case 16: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],23,0,-1,0,-1,500.0); // paint case 17: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],51,0,-1,0,-1,500.0); // gas station case 18: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],53,0,-1,0,-1,500.0); // race case 19: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],63,0,-1,0,-1,500.0); // pns case 20: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],9,0,-1,0,-1,500.0); // pescarie case 21: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],29,0,-1,0,-1,500.0); // pizza case 27: CreateDynamicMapIcon(BizzInfo[i][bEntranceX], BizzInfo[i][bEntranceY], BizzInfo[i][bEntranceZ],29,0,-1,0,-1,500.0); // tuning } UpdateLabel(2,idd); bussines++; return 1; }
  15. am erori C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(40162) : error 054: unmatched closing brace ("}") C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(40163) : error 010: invalid function or declaration C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\RoPlayersGM.pwn(40164) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 3 Errors. [Finished in 14.5s] CMD:clothes(playerid,params[]) { if(gPlayerLogged[playerid] == 0) return SendClientMessage(playerid, COLOR_LIGHTRED, "You need to login first."); if(InBussines[playerid] > 0) { if(BizzInfo[InBussines[playerid]][bType] == 11) { if(GetPlayerCash(playerid) < 15000) return SendClientMessage(playerid,COLOR_LIGHTRED,"You don't have $5000."); if(PlayerInfo[playerid][pMember] == 0 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 1 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist1, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 2 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist2, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 3 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist3, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 4 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist4, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 5 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist5, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 6 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist6, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 7 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 8 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist8, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 9 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist9, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 10 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist10, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 11 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist11, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 12 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist12, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 13 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist13, "Select skin"); } else if(PlayerInfo[playerid][pMember] == 14 && PlayerInfo[playerid][pLeader] == 0) { ShowModelSelectionMenu(playerid, skinlist14, "Select skin"); } } } return 1; } } else SCM(playerid,culoare,"Nu esti in clothes shop"); return 1; }
  16. Baieti eu zic atunci cand nu sunt in biz sau in alt biz de tip clothes. sa imi apara . Aceasta comanda o poti folosi in Biz-ul Clothes. asta vreau eu sa apara.
  17. Salut am si urmatoarea problema cand dau /sskin nu imi zice ca nu sunt in Clothes Shop. Si nu inteleg de ce . CMD:sskin(playerid,params[]) { if(gPlayerLogged[playerid] == 0) return SendClientMessage(playerid, COLOR_LIGHTRED, "Trebuie sa fii logat pentru a folosi comenzi."); if(InBussines[playerid] > 0) { if(BizzInfo[InBussines[playerid]][bType] == 11) { if(GetPlayerCash(playerid) < 8000) return SendClientMessage(playerid,COLOR_LIGHTRED,"You don't have $5000."); new SkinID; if(sscanf(params, "i", SkinID)) return SendClientMessage(playerid, 0xFF000000, "{A9C4E4}Folosire:{FFFFFF} /sskin <0-50>"); if(SkinID < 0 || SkinID > 50) return SendClientMessage(playerid, 0xFF000000, "Maximul id-ului este 50!"); GetPlayerCash(playerid); SetPlayerSkin(playerid, SkinID); PlayerInfo[playerid][pModel] = SkinID; Update(playerid, pModel); SetPlayerSkin(playerid, PlayerInfo[playerid][pModel]); GivePlayerCash(playerid, -15000); new str2[128]; mysql_format(SQL,str2,sizeof(str2),"UPDATE users SET `Money`='%d',`Model`='%d' WHERE `name`='%s'",GetPlayerCash(playerid),PlayerInfo[playerid][pModel],PlayerInfo[playerid][pNormalName]); mysql_tquery(SQL,str2,"",""); return 1; } } return 1; }
  18. nu detine changemail eu am asta <title>Schimba-ti adresa de email - <?php echo Config::$_SITE_NAME; ?></title> <?php if(!defined('panel')) die('Nope.'); if(!isset($_SESSION['user'])) { echo '<meta http-equiv="refresh" content="0;URL=\''.Config::$_PAGE_URL.'\'/>'; } else { ?> </div> <div class="main-content"> <div class="breadcrumbs" id="breadcrumbs"> <script type="text/javascript"> try{ace.settings.check('breadcrumbs' , 'fixed')}catch(e){} </script> <ul class="breadcrumb"> <li> <i class="ace-icon fa fa-home home-icon"></i> <a href="<?php echo Config::$_PAGE_URL; ?>">Home</a> </li> <li class="active">Schimba-ti adresa de email</li> </ul><!-- /.breadcrumb --> <div class="nav-search" id="nav-search"> <form method="POST" action="<?php echo Config::$_PAGE_URL; ?>search"> <span class="input-icon"> <input type="text" placeholder="Search ..." name="sname" id="username" type="submit" class="nav-search-input" autocomplete="on"> <i class="ace-icon fa fa-search nav-search-icon"></i> </span> </form> </div> <!-- /.nav-search --> </div> <div class="page-content"> <div class="row-fluid"> <div class="span12"> <?php if(isset($_POST['submit'])) { if(!$_POST['email'] || !$_POST['password']) { echo '<div class="alert alert-block alert-danger">Invalid email / Email invalid.</div>'; } else { $q = Config::$g_con->prepare('SELECT * FROM `users` WHERE `name` = ? AND `password` = ?'); $q->execute(array(Config::getData('users','name',$_SESSION['user']),$_POST['password'])); while($row = $q->fetch(PDO::FETCH_OBJ)) if($q->rowCount()) { $d = Config::$g_con->prepare('SELECT * FROM `changemail` WHERE `name` = ?'); $d->execute(array(Config::getData('users','name',$_SESSION['user']))); if($d->rowCount()) { echo '<div class="alert alert-block alert-danger">Ai mai f&#259;cut deja o cerere de schimbare a emailului.</div>'; } else { if($row->Email == "[email protected]") { $email = htmlspecialchars($_POST['email']); } else { $email = $row->Email; } $user = $row->name; $first = md5(uniqid()); $final_key = $first . md5($first); $s = Config::$g_con->prepare("INSERT INTO changemail (ChangeMailKey, name, Email) VALUES (?, ?, ?)"); $s->execute(array($final_key, $user, $_POST['email'])); require 'inc/PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->Host = ' '; $mail->SMTPAuth = false; $mail->Username = ''; $mail->Password = ''; $mail->SMTPSecure = 'tls'; $mail->Port = 587; $mail->setFrom('[email protected]', 'roplayers.ro'); $mail->addAddress($email); $mail->Subject = 'roplayers.ro - confirmare email / validate your email'; $mail->Body = "Salutare $user, [RO] Ai primit acest email pentru ca ai solicitat confirmarea emailului pe serverul pe serverul rpg.roplayers.ro Pentru a avea emailul ". $_POST['email'] ." asociat cu contul tau, da click pe link-ul de mai jos: ".Config::$_PAGE_URL."checkmail/".$final_key." [EN] You have received this email because you have requested to confirm your email on the server rpg.roplayers.ro To have the email ". $_POST['email'] ." associated with your account, please click the link above. Cu stima, Echipa roplayers.ro Contact: [email protected]"; if(!$mail->send()) { echo 'Email could not be sent.'; } else { $err = "<br />Un email a fost trimis catre ". $email ." pentru confirmarea emailului.<br /> In acel email vei gasi un link pe care va trebui sa dai click pentru a confirma schimbarea adresei de email asociata cu contul tau.<br /><br /> Emailul va ajunge la tine in cateva minute in casuta ta de email.<br /> Daca nu ai primit emailul, verifica si folderul de spam sau foloseste optiunea de search din yahoo/gmail pentru a cauta roplayers.ro."; } } } else echo '<div class="alert alert-block alert-danger"><button type="button" class="close" data-dismiss="alert">Invalid email / Email invalid.</div>'; } } ?> <div class="page-header"> <h1>Schimba-ti adresa de email</h1> </div> <p> <b>Atentie!</b><br>E interzis sa vinzi contul sau sa-l dai la schimb.<br>O data ce ai schimbat emailul, nu vei mai putea recupera contul daca nu ai acces la noul email.<br>Nu seta emailul altcuiva daca nu vrei sa ramai fara cont. <hr> </p> <?php if(isset($err)): ?> <?php echo $err ?> <?php else: ?> <form method="POST" action="" accept-charset="UTF-8"> New email:<br /> <input placeholder="Scrie noua adresa de email aici..." name="email" type="email"><br /> SA:MP Password:<br /> <input name="password" type="password"><br/><br /> <input class="btn btn-inverse" type="submit" name="submit" value="Modifica!"> </form> <?php endif; } ?>
  19. nenea am bagat fs-ul in gm si poc prea multe warninguri help :))) C:\pawno\include\sscanf2.inc(305) : warning 219: local variable "string" shadows a variable at a preceding level C:\pawno\include\sscanf2.inc(305) : warning 219: local variable "string" shadows a variable at a preceding level C:\pawno\include\sscanf2.inc(365) : warning 219: local variable "string" shadows a variable at a preceding level C:\pawno\include\sscanf2.inc(365) : warning 219: local variable "string" shadows a variable at a preceding level C:\pawno\include\mSelection.inc(698) : warning 219: local variable "string" shadows a variable at a preceding level C:\pawno\include\dini.inc(239) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(2370) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(4508) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(4724) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(4800) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(4960) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(4974) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(5104) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(5202) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(5211) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(5513) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(5936) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(6157) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(6176) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(6201) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(6961) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7011) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7024) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7058) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7105) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7217) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7389) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(7473) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8041) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8129) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8217) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8285) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8340) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8836) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(8939) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9172) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9392) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9408) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9422) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9473) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9706) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(9759) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(10354) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11291) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11355) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11370) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11386) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11601) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11719) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(11815) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(12529) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(12694) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(12759) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(12824) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(12885) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(12947) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(13076) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(13205) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(13318) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(13475) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(14946) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(15368) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(18331) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(18690) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(18725) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(18762) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(18833) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(18909) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(19729) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(19876) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(19911) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(19988) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20526) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20870) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20876) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20895) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20914) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20929) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20945) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20984) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(20996) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21005) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21017) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21029) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21040) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21058) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21069) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21134) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21177) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21405) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21434) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21474) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21485) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21510) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21559) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21595) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21633) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21734) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21808) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(21953) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22009) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22097) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22177) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22187) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22197) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22207) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22217) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22227) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22253) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22267) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22281) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22295) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22309) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22323) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22713) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22752) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22792) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22815) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22842) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(22916) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23013) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23030) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23045) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23198) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23216) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23231) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23277) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23305) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23334) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23351) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23372) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23397) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23541) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23580) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23618) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23717) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(23817) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24131) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24201) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24266) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24378) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24495) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24633) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24669) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24729) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24775) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(24993) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25026) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25058) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25089) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25201) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25269) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25352) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25455) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25593) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25718) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25749) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25790) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25813) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25897) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25911) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(25979) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26041) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26156) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26209) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26270) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26323) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26363) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26394) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26419) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26442) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26461) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26488) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26525) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26756) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26837) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26866) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26909) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26923) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26935) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26963) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(26989) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27011) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27035) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27074) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27102) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27128) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27150) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27198) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27219) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27248) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27277) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27292) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27332) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27691) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27705) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27761) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27817) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27921) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(27997) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28018) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28045) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28087) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28126) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28152) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28222) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28256) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28284) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28317) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28402) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28413) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28445) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28518) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28568) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28597) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28634) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28656) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28694) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28750) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28848) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28887) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28898) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28928) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28947) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(28973) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29024) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29089) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29142) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29213) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29236) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29276) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29388) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29476) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29565) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29605) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29645) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29755) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29795) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29823) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29863) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29905) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29934) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(29994) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30164) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30434) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30482) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30571) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30610) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30636) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30662) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30688) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30763) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30793) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30823) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(30904) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(31079) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33208) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33258) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33294) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33333) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33367) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33406) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33426) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33492) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33542) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33563) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33582) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33606) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33709) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33760) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33820) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33918) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(33998) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34079) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34332) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34368) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34414) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34478) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34537) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34580) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34633) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34743) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34784) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34822) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34886) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34909) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34928) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34952) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(34976) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35044) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35117) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35191) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35213) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35255) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35265) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35285) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35347) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35844) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35885) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35905) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(35927) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36145) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36161) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36201) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36237) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36267) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36293) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36319) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36347) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36374) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36401) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36435) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36467) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36723) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36765) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36877) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36905) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36918) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36937) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36970) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(36997) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37048) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37106) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37351) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37382) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37456) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37570) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37605) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37645) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37770) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37792) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(37945) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38026) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38106) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38137) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38245) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38302) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38324) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38348) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38444) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38461) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38478) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38513) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38536) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38574) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38629) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38748) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38774) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38803) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38899) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38932) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(38985) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39036) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39094) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39161) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39267) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39321) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39345) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39392) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39435) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39456) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39511) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39547) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39560) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39643) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39686) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39713) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39731) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39806) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39842) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39882) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39913) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39937) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(39974) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40001) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40414) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40434) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40503) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40510) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40699) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40811) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40909) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40954) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(40998) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41079) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41155) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41176) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41196) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41217) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41315) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(41368) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42093) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42130) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42150) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42171) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42209) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42242) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42383) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42394) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42405) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42433) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42627) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(42841) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(43107) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(43267) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(43377) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(43444) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(43570) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(43591) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(51120) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(51895) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\SpriteTV\Desktop\GMROPLAYERS\gamemodes\BigZoneGM.pwn(52879) : warning 219: local variable "string" shadows a variable at a preceding level Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 412 Warnings. [Finished in 16.2s]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.