Jump to content

Razvan2264

Membru
  • Posts

    48
  • Joined

  • Last visited

    Never

Everything posted by Razvan2264

  1. Salut intru in banca dau /withdraw /deposit etc si imi spune ca nu sunt in banca . O sa va arat comanda si coordonatele sa imi spuneti ce am gresit. [pawn]if(strcmp(cmd, "/withdraw", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerToPoint(6.0, playerid, 1504.2522,-1038.8168,601.5460) || IsAtATMSystem(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /withdraw [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } new cashdeposit = strval(tmp); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /withdraw [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } if (cashdeposit > PlayerInfo[playerid][pAccount] || cashdeposit < 1) { SendClientMessage(playerid, COLOR_GRAD2, "[Eroare]: You dont have that much !"); return 1; } //ConsumingMoney[playerid] = 1; SafeGivePlayerMoney(playerid,cashdeposit); PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]-cashdeposit; format(string, sizeof(string), "[server]: You Have Withdrawn %s from your account Total: %s", DecimalPoint(cashdeposit),DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_YELLOW, string); return 1; } else { SendClientMessage(playerid, COLOR_GREY, "[Eroare]: You are not at the Bank !"); return 1; } } return 1; } if(strcmp(cmd, "/bank", true) == 0 || strcmp(cmd, "/deposit", true) == 0) { if(IsPlayerConnected(playerid)) { if(!PlayerToPoint(6.0, playerid, 1500.3766,-1038.3237,601.5460) && !IsAtATMSystem(playerid)) { SendClientMessage(playerid, COLOR_GREY, "[Eroare]: You are not at the Bank !"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /bank [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } new cashdeposit = strval(tmp); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /bank [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } if (cashdeposit > GetPlayerMoney(playerid) || cashdeposit < 1) { SendClientMessage(playerid, COLOR_GRAD2, "[Eroare]: You dont have that much"); return 1; } SafeGivePlayerMoney(playerid,-cashdeposit); new curfunds = PlayerInfo[playerid][pAccount]; PlayerInfo[playerid][pAccount]=cashdeposit+PlayerInfo[playerid][pAccount]; SendClientMessage(playerid, COLOR_WHITE, "|___ BANK STATMENT ___|"); format(string, sizeof(string), "Old Balance: %s", DecimalPoint(curfunds)); SendClientMessage(playerid, COLOR_GRAD2, string); format(string, sizeof(string), "Deposit: %s",DecimalPoint(cashdeposit)); SendClientMessage(playerid, COLOR_GRAD4, string); SendClientMessage(playerid, COLOR_GRAD6, "|-----------------------------------------|"); format(string, sizeof(string), "New Balance: %s", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_WHITE, string); return 1; } return 1; } if(strcmp(cmd, "/balance", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerToPoint(6.0, playerid, 1496.6987,-1038.3569,601.5460) || IsAtATMSystem(playerid)) { format(string, sizeof(string), "[server]: You Have %s in your account.",DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_YELLOW, string); } else { SendClientMessage(playerid, COLOR_GREY, "[Eroare]: You are not at the Bank !"); return 1; } } return 1; }[/pawn]
  2. Salut.Am nevoie de ajutor nu stiu cum sa setez RP Adica la lvl 1 imi trebuie 8 rp eu vreau sa imi trebuiasca 4 La lvl 2 imi trebuiesc 12 rp eu vreau sa imi trebuiasca 6 Cine stie cum sa rezolv aceasta problema?
  3. Salut intru in banca dau /withdraw /deposit etc si imi spune ca nu sunt in banca . O sa va arat comanda si coordonatele sa imi spuneti ce am gresit. [pawn] if(strcmp(cmd, "/withdraw", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerToPoint(6.0, playerid, 1504.2522,-1038.8168,601.5460) || IsAtATMSystem(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /withdraw [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } new cashdeposit = strval(tmp); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /withdraw [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } if (cashdeposit > PlayerInfo[playerid][pAccount] || cashdeposit < 1) { SendClientMessage(playerid, COLOR_GRAD2, "[Eroare]: You dont have that much !"); return 1; } //ConsumingMoney[playerid] = 1; SafeGivePlayerMoney(playerid,cashdeposit); PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]-cashdeposit; format(string, sizeof(string), "[server]: You Have Withdrawn %s from your account Total: %s", DecimalPoint(cashdeposit),DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_YELLOW, string); return 1; } else { SendClientMessage(playerid, COLOR_GREY, "[Eroare]: You are not at the Bank !"); return 1; } } return 1; } if(strcmp(cmd, "/bank", true) == 0 || strcmp(cmd, "/deposit", true) == 0) { if(IsPlayerConnected(playerid)) { if(!PlayerToPoint(6.0, playerid, 1500.3766,-1038.3237,601.5460) && !IsAtATMSystem(playerid)) { SendClientMessage(playerid, COLOR_GREY, "[Eroare]: You are not at the Bank !"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /bank [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } new cashdeposit = strval(tmp); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{00A1FF}USAGE{FFFFFF}: /bank [amount]"); format(string, sizeof(string), "[server]: You Have %s in your account.", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_GRAD3, string); return 1; } if (cashdeposit > GetPlayerMoney(playerid) || cashdeposit < 1) { SendClientMessage(playerid, COLOR_GRAD2, "[Eroare]: You dont have that much"); return 1; } SafeGivePlayerMoney(playerid,-cashdeposit); new curfunds = PlayerInfo[playerid][pAccount]; PlayerInfo[playerid][pAccount]=cashdeposit+PlayerInfo[playerid][pAccount]; SendClientMessage(playerid, COLOR_WHITE, "|___ BANK STATMENT ___|"); format(string, sizeof(string), "Old Balance: %s", DecimalPoint(curfunds)); SendClientMessage(playerid, COLOR_GRAD2, string); format(string, sizeof(string), "Deposit: %s",DecimalPoint(cashdeposit)); SendClientMessage(playerid, COLOR_GRAD4, string); SendClientMessage(playerid, COLOR_GRAD6, "|-----------------------------------------|"); format(string, sizeof(string), "New Balance: %s", DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_WHITE, string); return 1; } return 1; } if(strcmp(cmd, "/balance", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerToPoint(6.0, playerid, 1496.6987,-1038.3569,601.5460) || IsAtATMSystem(playerid)) { format(string, sizeof(string), "[server]: You Have %s in your account.",DecimalPoint(PlayerInfo[playerid][pAccount])); SendClientMessage(playerid, COLOR_YELLOW, string); } else { SendClientMessage(playerid, COLOR_GREY, "[Eroare]: You are not at the Bank !"); return 1; } } return 1; }[/pawn] Va multumesc pentru ajutor
  4. In pc gamemodul merge fara lag dar cand il pun pe host are probleme cateodata are lag cateodata nu
  5. Deci nu imi merg comenzile /kick si /ban: [pawn] if(strcmp(cmd, "/kick", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /kick [playerid/PartOfName] [reason]"); return 1; } giveplayerid = ReturnUser(tmp); if (PlayerInfo[playerid][pStaff] >= 3) { if(IsPlayerConnected(giveplayerid)) { if(giveplayerid != INVALID_PLAYER_ID) { GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer)); if (strcmp(giveplayer,"Spilter",true)==0 || strcmp(giveplayer,"Spilter",true)==0) { SendClientMessage(playerid, COLOR_GRAD1, "You cannot kick the member of staff!."); return 1; } GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[64]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /kick [playerid/PartOfName] [reason]"); return 1; } new year, month,day; getdate(year, month, day); format(string, sizeof(string), "{F81414}AdmCmd: {F3FF02}%s was kicked by {FFFFFF}%s,{F81414}reason: %s (%d-%d-%d)", giveplayer, sendername, (result),month,day,year); if(PlayerInfo[playerid][pStaff] > 0) { format(string, sizeof(string), "{F81414}Admin %s: {F3FF02}%s was kicked with reason:{F81414} %s",sendername,giveplayer, (result)); } SendClientMessageToAll(COLOR_LIGHTRED, string); KickLog(string); Kick(giveplayerid); return 1; } } } else { format(string, sizeof(string), " %d is not an active player.", giveplayerid); SendClientMessage(playerid, COLOR_GRAD1, string); } } return 1; }[/pawn] [pawn] if(strcmp(cmd, "/ban", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /ban [playerid/PartOfName] [reason]"); return 1; } giveplayerid = ReturnUser(tmp); if (PlayerInfo[playerid][pStaff] >= 1338) { if(IsPlayerConnected(giveplayerid)) { if(giveplayerid != INVALID_PLAYER_ID) { GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[64]; while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) { result[idx - offset] = cmdtext[idx]; idx++; } result[idx - offset] = EOS; if(!strlen(result)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /ban [playerid/PartOfName] [reason]"); return 1; } new year, month,day; getdate(year, month, day); format(string, sizeof(string), "AdmCmd: %s was banned by %s, reason: %s (%d-%d-%d)", giveplayer, sendername, (result),month,day,year); BanLog(string); format(string, sizeof(string), "AdmCmd: %s was banned by Administrator, reason: %s", giveplayer, (result)); SendClientMessageToAll(COLOR_LIGHTRED, string); PlayerInfo[giveplayerid][pLocked] = 1; Ban(giveplayerid); return 1; } }//not connected } else { format(string, sizeof(string), " %d is not an active player.", giveplayerid); SendClientMessage(playerid, COLOR_GRAD1, string); } } return 1; }[/pawn] Ce trebuie facut?
  6. Salut ce fisiere trebuie adaugate pe un host ? Mentionez ca hostul este pe linux
  7. [pawn]219: local variable "string" shadows a variable at a preceding level[/pawn] 10 erori dastea
  8. Salut am sv hostat de la 0ping si imi merge in lag dar doar cateodata e de la host sau gm?
  9. nu am asa ceva in gm ShowPlayerMarkers
  10. Salut cum fac sa nu mai apara playeri pe harta ( precizez ca apar numai playeri din anumite factiuni) eu nu am linia Linia ShowPlayerMarkers(1); in gm Ajutati-ma
  11. deci comanda nu functioneaza deloc am bagat 0.3x si am mai facut mici modificari in mapping si nu mai merge
  12. Am comanda /v park adaugata pe sv inainte mergea dar de cand am facut update pe 0.3x nu mai merge: [pawn] else if(strcmp(x_nr,"park",true) == 0) { new Float:x,Float:y,Float:z; new Float:a; new carid; new getcarid; if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey]) { carid = PlayerInfo[playerid][pPcarkey]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey2]) { carid = PlayerInfo[playerid][pPcarkey2]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey3] && PlayerInfo[playerid][pDonateRank] >= 1) { carid = PlayerInfo[playerid][pPcarkey3]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey4] && PlayerInfo[playerid][pDonateRank] >= 2) { carid = PlayerInfo[playerid][pPcarkey4]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey5] && PlayerInfo[playerid][pDonateRank] >= 2) { carid = PlayerInfo[playerid][pPcarkey5]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey6] && PlayerInfo[playerid][pDonateRank] >= 3) { carid = PlayerInfo[playerid][pPcarkey6]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pPcarkey7] && PlayerInfo[playerid][pDonateRank] >= 3) { carid = PlayerInfo[playerid][pPcarkey7]; } else { return 1; } getcarid = GetPlayerVehicleID(playerid); GetPlayerName(playerid, playername, sizeof(playername)); GetVehiclePos(carid, x, y, z); //GetPlayerFacingAngle(playerid, a); GetVehicleZAngle(carid, a); if(IsPlayerInVehicle(playerid,carid) && CarInfo[carid][cOwned] == 1) { if(PlayerInfo[playerid][pPcarkey] == 999 && PlayerInfo[playerid][pPcarkey2] == 999 && PlayerInfo[playerid][pPcarkey3] == 999 && PlayerInfo[playerid][pPcarkey4] == 999 && PlayerInfo[playerid][pPcarkey5] == 999 && PlayerInfo[playerid][pPcarkey6] == 999 & PlayerInfo[playerid][pPcarkey7]) { SendClientMessage(playerid, COLOR_GREY, "You don't own a car."); return 1; } if(getcarid == carid) { CarInfo[carid][cLocationx] = x; CarInfo[carid][cLocationy] = y; CarInfo[carid][cLocationz] = z; CarInfo[carid][cAngle] = a; format(string, sizeof(string), "~n~ You have parked your vehicle in this location. ~n~"); GameTextForPlayer(playerid, "You have parked your vehicle in this position. It will respawn here.", 10000, 3); OnPropUpdate(); OnPlayerUpdate(playerid); DestroyVehicle(carid); SetVehicleNumberPlate(CreateVehicle(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000),CarInfo[carid][cLicense]); if(CarInfo[carid][cPaintjob] != 999) { ChangeVehiclePaintjob(carid, CarInfo[carid][cPaintjob]); } SetVehicleModifications(carid); SaveVehicleComponents(carid); TogglePlayerControllable(playerid, 1); return 1; } } }[/pawn] Stie cineva ce are?? Multumesc Pentru ajutor
  13. numai am nevoie am rezolvat multumesc pentru ajutor
  14. Salut am cumparat un host. Dar cand bag gm pe ea imi arata ca e gm bagat dar cand intru pe sv nu am masini / comenzi/mapele adica nu am nimic pe sv ce trebuie sa fac?
  15. s-a rezolvat m-a ajutat mafia
  16. da mafia merge asa cum ai zis tu multumesc mult
  17. Roleplay nu ii stiu numele original il am de la cineva
  18. Salut, am si eu o problema cu salvarea masinilor personale.Imi cumpar masini apar la stats totul perfect,dar dupa restart la server masinile dispar ,dar ramanane la stats id lor. Aveti idee ce are spuneti-mi ce trebuie sa va postez sa ma ajutati. Multumesc pentru ajutor
  19. [pawn]C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2194) : error 004: function "SafeGivePlayerMoney" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2223) : error 004: function "SafeGivePlayerMoney" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2259) : error 004: function "SafeResetPlayerWeapons" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2260) : error 004: function "SafeGivePlayerWeapon" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2287) : error 004: function "SafeResetPlayerWeapons" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2454) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2467) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2495) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2506) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2521) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2535) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2549) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(2563) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3264) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3276) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3287) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3299) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3303) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3315) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3319) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3323) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3327) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3331) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3335) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3339) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\GM MEU\gamemodes\GM MEU.pwn(3343) : error 004: function "PlayerToPoint" is not implemented Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors. [/pawn] Pana acu mergea perfect dar am modificat casele adica in loc de 2 sa am 1 stie cineva ce am facut?
  20. am rezolvat si am si reusit ms pt ajutor
  21. Am erorile acestea C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2084) : error 004: function "SafeGivePlayerMoney" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2113) : error 004: function "SafeGivePlayerMoney" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2149) : error 004: function "SafeResetPlayerWeapons" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2150) : error 004: function "SafeGivePlayerWeapon" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2177) : error 004: function "SafeResetPlayerWeapons" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2344) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2357) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2385) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2396) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2411) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2425) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2439) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(2453) : error 004: function "ClearChatbox" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3048) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3059) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3071) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3075) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3087) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3091) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3095) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3099) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3103) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3107) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3111) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3115) : error 004: function "PlayerToPoint" is not implemented C:\Users\Administrator\Desktop\samp03\gamemodes\newlvlss.pwn(3119) : error 004: function "PlayerToPoint" is not implemented Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors.
  22. Salut am nevoie de o informatie: Cum pot baga masini unice/colectie intr-un nou buycar adica: 1.Sa mai fac un buycar in lv sa apara la fel $ acela si sa fie in el toate masinile de colectie 2.Sa aiba acces la acel abuycar numai ownerii Cine ma poate ajuta?? Va multumesc
×
×
  • 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.