Jump to content

[.E.m.O.]K1DDU

Membru
  • Posts

    392
  • Joined

  • Last visited

Everything posted by [.E.m.O.]K1DDU

  1. SQLite Saver/Loader BUG Bine ca l-ai reparat xD 5/5 ^^
  2. [.E.m.O.]K1DDU

    WWE (2011)

    Dap ii depe sa-mp.com Daca ii de tine, bravo ii misto 5/5
  3. Este o problema, tot se inchide serverul, i-am intrebat pe cei de la Host, si le-am spus sa se uite prin logo-uri si ei au spus ca apare asta ""samp03svr: amx/amxfile.c:222: fputs_cell: Assertion `fp!=((void *)0)' failed."" Undeva prin logo-uri la configuratie Ce inseamna? :]] Si se inchide serverul din cauza asta x__X"
  4. 3,1/5 xD Cum ti-am spus si pe Y!M, macar daca te ocupai de aspect sa fie Center ar fi fost mai frumos dupa parerea mea, sau sa le lasi fara Space xD Asa: Knife - Cost - 213$ Asd - Cost - 213$ Rss - Cost - 213$ Hyg - Cost - 213$ Nu asa: Knife - Cost - 213$ Asd - Cost - 213$ Rss - Cost - 213$ Hyg - Cost - 213$
  5. Clubu Bazzara :]] Misto mapa 4/5
  6. Deci tu vrei sa apara atunci cand alegi si Skinu? Atunci pui asa, acel textdraw are un nume dat de ex. [tdasd] Asa meri la onplayerconnect si pui TextDrawShowForPlayer(playerid, tdasd); Daca vrei sa dispara atunci dupa ce dai pe butonu Spawn Meri la onplayerspawn si pui TextDrawHideForPlayer(playerid, tdasd); Daca vrei sa ramana si dupa Spawn pui doar la onplayerconnect cum am spus mai sus
  7. Pentru prima versiune ii bun ^^ 4/5 [Acel sistem de AFK||BRB vezi ca ai lasat culorile si editu pe care l-am facut eu :]] ]
  8. Din cate stiu esti newbie ^^ Frumos pt. inceput bravo. 5/5 [note for newbie ^__^"]
  9. Daca esti incepator, ii bun 3/5 xD
  10. Da, poate nui din GM, si Sistemele de Admin foloses OnPlayerText, poate acolo ii problema, poate ai ceva in Sistemul de Admin ce foloseste [iD] sau alte chesti, verifica acolo sau posteazal aici daca nu-i asa lung.
  11. LoL credeam ca o sa fie note 2/5, 3/5 .. Thanks all ^^
  12. Asa as zice si eu dar daca el zice cai ii usrb1n atunci ii bine ^^ Am vazut FS pe .com l-am pus la update 0.3d, bravo ii chiar misto 10/10 ;)
  13. Misto man ^^ bravo, l-am testat functioneaza bine si ii frumos 10/10
  14. [glow=violet,2,300]Color Menu[/glow] [glow=red,2,300]Descriere:[/glow] Am facut ceva mic Color Menu, in care va puteti schimba culorile la Name Tab/Chat, la Vehicul si la Textul din Chat. [glow=red,2,300]Bug:[/glow] Daca o sa-l folositi, o sa se intample ceva ce voi o sa credeti ca este un Bug xD insa nu, atunci cand intra un jucator ii pune culoarea (in chat) pusa de tine la OnPlayerText, dar in Tab ii pune cu totul alta culoare ^^ [glow=red,2,300]Script:[/glow] Pentru inceput definiti: #define cmenu 100 //Cmenu #define ccolour1 101 #define ccolour2 102 #define ccolour3 103 new Colour[MAX_PLAYERS][Col]; Si trebui sa adaugat si (Doar daca nu le aveti cumva): Undeva sub Include-uri enum Col { pChat[9], pNameCol[9] } Apoi adaugati la OnPlayerCommandText: if (strcmp(cmdtext, "/cmenu", true)==0) { ShowPlayerDialog(playerid,cmenu,DIALOG_STYLE_LIST,"{059DFB}Alege o optiune","{FF8A02}Change Name Color\r\n{FF8A02}Change Chat Text Color\r\n{FF8A02}Change Vehicle Color","Okay", "Exit"); return 1; } Dupa ce ati inserat comanda, bagati la OnPlayerDialogResponse: //Name, Car, Text Change Color if(dialogid == cmenu) { if(response) { if(listitem == 0) { ShowPlayerDialog(playerid,ccolour1,DIALOG_STYLE_LIST,"{059DFB}Alege culoarea pentru numele tau.","{33CC00}Verde\r\n{FF0000}Rosu\r\n{FFCC00}Portocaliu\r\n{9905FB}Mov\r\n{ADFB05}Verde Lamai\r\n{05FB80}Verde Deschis\r\n{FB05A9}Roz\r\n{222122}Negru","Okay", ""); } if(listitem == 1) { ShowPlayerDialog(playerid,ccolour2,DIALOG_STYLE_LIST,"{059DFB}Alege culoarea pentru textul tau in chat.","{33CC00}Verde\r\n{FF0000}Rosu\r\n{FFCC00}Portocaliu\r\n{9905FB}Mov\r\n{ADFB05}Verde Lamai\r\n{05FB80}Verde Deschis\r\n{FB05A9}Roz","Okay", ""); } if(listitem == 2) { ShowPlayerDialog(playerid,ccolour3,DIALOG_STYLE_LIST,"{059DFB}Alege culoarea pentru vehicolul tau.","{33CC00}Verde\r\n{FF0000}Rosu\r\n{FFCC00}Portocaliu\r\n{9905FB}Mov\r\n{908F8F}Gri\r\n{B50000}Rosu Inchis\r\n{CB8F34}Maro Deschis\r\n{1C1B1B}Negru\r\n{1148A1}Albastru\r\n{FA0EF2}Roz","Okay", ""); } } return 1; } new string[528]; if(dialogid == ccolour1) { if(response) { if(listitem == 0) { Colour[playerid][pNameCol] = "{33CC00}"; SetPlayerColor(playerid, 0x33CC00FF); } if(listitem == 1) { Colour[playerid][pNameCol] = "{FF0000}"; SetPlayerColor(playerid, 0xFF0000FF); } if(listitem == 2) { Colour[playerid][pNameCol] = "{FFCC00}"; SetPlayerColor(playerid, 0xFFCC00FF); } if(listitem == 3) { Colour[playerid][pNameCol] = "{9905FB}"; SetPlayerColor(playerid, 0x9905FBFF); } if(listitem == 4) { Colour[playerid][pNameCol] = "{ADFB05}"; SetPlayerColor(playerid, 0xADFB05FF); } if(listitem == 5) { Colour[playerid][pNameCol] = "{05FB80}"; SetPlayerColor(playerid, 0x05FB80FF); } if(listitem == 6) { Colour[playerid][pNameCol] = "{FB05A9}"; SetPlayerColor(playerid, 0xFB05A9FF); } if(listitem == 7) { Colour[playerid][pNameCol] = "{000000}"; SetPlayerColor(playerid, 0x000000FF); } format(string,sizeof(string),"{059DFB}Culoarea numelui tau sa schimbat in culoarea aleasa de tine.",Colour[playerid][pNameCol]); ShowPlayerDialog(playerid,cmenu,DIALOG_STYLE_MSGBOX,"Succes",string,"Ok",""); } } if(dialogid == ccolour2) { if(response) { if(listitem == 0) { Colour[playerid][pChat] = "{33CC00}"; } if(listitem == 1) { Colour[playerid][pChat] = "{FF0000}"; } if(listitem == 2) { Colour[playerid][pChat] = "{FFCC00}"; } if(listitem == 3) { Colour[playerid][pChat] = "{9905FB}"; } if(listitem == 4) { Colour[playerid][pChat] = "{ADFB05}"; } if(listitem == 5) { Colour[playerid][pChat] = "{05FB80}"; } if(listitem == 6) { Colour[playerid][pChat] = "{FB05A9}"; } format(string,sizeof(string),"{059DFB}Culoarea Textului tau in Chat sa schimbat in culoarea aleasa de tine.",Colour[playerid][pChat]); ShowPlayerDialog(playerid,cmenu,DIALOG_STYLE_MSGBOX,"Succes",string,"Ok",""); } } if(dialogid == ccolour3) { if(response) { if(listitem == 0) { ChangeVehicleColor(GetPlayerVehicleID( playerid ), 86, 86); } if(listitem == 1) { ChangeVehicleColor(GetPlayerVehicleID( playerid ), 151, 151); } if(listitem == 2) { ChangeVehicleColor(GetPlayerVehicleID( playerid ), 6, 6); } if(listitem == 3) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 186, 186); } if(listitem == 4) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 118, 118); } if(listitem == 5) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 117, 117); } if(listitem == 6) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 31, 31); } if(listitem == 7) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 0, 0); } if(listitem == 8) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 79, 79); } if(listitem == 9) { ChangeVehicleColor( GetPlayerVehicleID( playerid ), 146, 146); } format(string,sizeof(string),"{059DFB}Culoarea Vehiculului tau sa schimbat in culoarea aleasa de tine."); ShowPlayerDialog(playerid,cmenu,DIALOG_STYLE_MSGBOX,"Succes",string,"Ok",""); if ( !IsPlayerInAnyVehicle( playerid ) ) return SendClientMessage(playerid,red,"EROARE:Nu esti intr-un vehicul!"); } } Dupa mergeti la OnPlayerText si adaugati: !!Daca aveti acele chesti cu ID si BubbleColors ar fi bine sa le stergeti daca nu vá va face unele mici probleme. new pName[24]; //Daca deja este definit il puteti sterge! new string[528]; GetPlayerName(playerid,pName,sizeof(pName)); format(string,sizeof(string),"{B8FF02}%s%s {068BFF}[%d]: {FFFFFF}%s%s",Colour[playerid][pNameCol],pName,playerid,Colour[playerid][pChat],text[0]); SendClientMessageToAll(Colour[playerid][pNameCol],string); Cand un jucator se va conecta ii va arata asa numele: Dar in Tab vor fi culori diferite de cele din Chat. {B8FF02}Cristi {068BFF}[ID:3]: P.S >> Daca am uitat ceva, sau daca nu intelegeti ceva spuneti la comentari. Sper sa va fie de folos
  15. Sunt destule deee.....dar ii foarte bun pt. acele servere War-Sumo de acest gen ca uni nu baga Sistem de Admin pe asa moduri si poate vor ceva de anti bad word vezi vezi :]] tot ii de folos:P
  16. Frumos Vampir Ii folositor 5/5
  17. Se pare ca nu a mai aparut asa mult Dar a aparut asta: Plugin succesfully loaded (version v3.2-4-g12a1db5) gamemodes/RsE.amx: During execution of Itter_OnGameModeInit: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". EDIT: Pe parcurs a mai aparut x__X" Plugin succesfully loaded (version v3.2-4-g12a1db5) gamemodes/RsE.amx: During execution of Itter_OnGameModeInit: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of OnPlayerCommandText: filterscripts/LuxAdmin.amx: Run time error 5: "Invalid memory access". filterscripts/gang.amx: During execution of OnPlayerCommandText: filterscripts/gang.amx: Run time error 5: "Invalid memory access". filterscripts/Home.amx: During execution of OnPlayerCommandText: filterscripts/Home.amx: Run time error 5: "Invalid memory access". filterscripts/Rtune.amx: During execution of OnPlayerCommandText: filterscripts/Rtune.amx: Run time error 5: "Invalid memory access". filterscripts/Sumo.amx: During execution of OnPlayerCommandText: filterscripts/Sumo.amx: Run time error 5: "Invalid memory access". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of OnPlayerCommandText: filterscripts/LuxAdmin.amx: Run time error 5: "Invalid memory access". filterscripts/gang.amx: During execution of OnPlayerCommandText: filterscripts/gang.amx: Run time error 5: "Invalid memory access". filterscripts/Home.amx: During execution of OnPlayerCommandText: filterscripts/Home.amx: Run time error 5: "Invalid memory access". filterscripts/Rtune.amx: During execution of OnPlayerCommandText: filterscripts/Rtune.amx: Run time error 5: "Invalid memory access". filterscripts/Sumo.amx: During execution of OnPlayerCommandText: filterscripts/Sumo.amx: Run time error 5: "Invalid memory access". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of OnPlayerCommandText: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds".
  18. houseup este folosit in sistemul de casi xD daca il sterg nu mai apare proprietar, cost ETC new Text3D:housei[MAX_HOUSES]; new hInfo[MAX_HOUSES][HouseInfo]; ========= #define CarSpawnLimit 100 new CarSpawn[MAX_PLAYERS]; forward CarSpawner(playerid,model); forward CarSpawnLimiter(playerid); SetTimer("CarSpawnLimiter", 1000, true);
  19. public CarSpawnLimiter(){ new i; for(i=0;i<=MAX_PLAYERS;i++){ if(CarSpawn[i]>0){ CarSpawn[i]--; } } } =========== public houseup(houseid, Float:iconX, Float:iconY, Float:iconZ) { new string[1024]; hInfo[houseid][iconx]=iconX; hInfo[houseid][icony]=iconY; hInfo[houseid][iconz]=iconZ; for(new i = 0; i <= MAX_HOUSES; i++) { format(string, sizeof(string), "{FFFFFF}Proprietar: {FFAF00}%s\n{FFFFFF}Cost: {00C0FF}%i", hInfo[i][Name],hInfo[i][Cost]); UpdateDynamic3DTextLabelText(housei[i], 0xCCFFDDFF, string); } return 1; }
  20. Hi ^^ Azi am bagat pluginul crashdetect.so pe host. Am aprins hostul si a aparut in plugins fisierul crashdetect.txt in care scrie: Plugin succesfully loaded (version v3.2-4-g12a1db5) gamemodes/RsE.amx: During execution of zcmd_OnGameModeInit: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/LuxAdmin.amx: During execution of PingKick: filterscripts/LuxAdmin.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". filterscripts/Home.amx: During execution of houseup: filterscripts/Home.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". gamemodes/RsE.amx: During execution of CarSpawnLimiter: gamemodes/RsE.amx: Run time error 4: "Array index out of bounds". Codul este foarte lung, si nustiu ce probleme sunt astea....tot cam dat crash serverul si apare astea Ce pot sa fac? Thanks ^^
  21. LooooL Oare cate chesti de astea am auzit de la tine stuntman si nu functiona x__X" Hostul trebuia sa isi faca update cu SA-MP 0.3d de la GamePanel xD pe degeaba pui tu 0.3d ca nu se va aprinde serverul, cand va aparea versiunea finala se va baga update si la hosturi [Daca ei sunt in stire cu asa ceva desigur] si nu inteleg de ce vreti 0.3d daca inca nu ii finalizat xD Il poti trece si il poti deschide in PC dar pe Host trebuie cei de la Host sa faca un fel de update asa ceva xD
  22. LoL x__X" Am facut cum ai zis tu Stuntman cu acele linii cu pas bla bla..... si dupa am sters acele lini si am lasat doar 1 [pawn] print( "1" ); [/pawn] Am deschis serverul tot asa a facut xD Dupa am sters si aia de mai sus si a functionat x__X" dar .amx are cu 100 KB in plus xD Nu cred ca este o problema lam testat pe tot! Si functioneaza perfect Mersi stuntman si dreamer ^^
×
×
  • 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.