Jump to content

Alecsandro

Membru
  • Posts

    22
  • Joined

  • Last visited

    Never

Everything posted by Alecsandro

  1. Omg , cata imaginatia si cat talent , bravo tine-o tot asa " 5/5 " .
  2. Salut am si eu comanda /park pt a parca masina insa doresc sa parcheze masina cum e ea normal adica daca iese fum din ea sa nu o respawneze ca nou sa o parcheze cazand de sus tot asa dar fara sa o repare sa schimbe nimic. if(strcmp(cmd, "/park", true) == 0) { if(IsPlayerConnected(playerid)) { new Float:x,Float:y,Float:z; new Float:a; new carid; new getcarid; if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pCar]) { carid = PlayerInfo[playerid][pCar]; } else if(GetPlayerVehicleID(playerid) == PlayerInfo[playerid][pMoto]) { carid = PlayerInfo[playerid][pMoto]; } else { return 1; } getcarid = GetPlayerVehicleID(playerid); GetPlayerName(playerid, playername, sizeof(playername)); GetVehiclePos(carid, x, y, z); GetVehicleZAngle(carid, a); if(IsPlayerInVehicle(playerid,carid) && CarInfo[carid][cOwned] == 1) { if(PlayerInfo[playerid][pCar] == 999 && PlayerInfo[playerid][pMoto] == 999) { SCM(playerid, COLOR_GREY, "** You don't own a car or moto !"); return 1; } if(getcarid == carid || EngineSTATE[carid] == 1) { CarInfo[carid][cLocationx] = x; CarInfo[carid][cLocationy] = y; CarInfo[carid][cLocationz] = z; CarInfo[carid][cAngle] = a; TogglePlayerControllable(playerid, 1); format(string, sizeof(string), "~g~%s ~n~~w~has saved in the position",CarInfo[carid][cModel]); GameTextForPlayer(playerid, string, 5000, 1); SetVehicleNumberPlate(carid,CarInfo[carid][cPlate]); SetVehicleToRespawn(carid); PutPlayerInVehicle(playerid, carid, 0); GetVehicleParamsEx(carid,engine,lights,alarm,doors,bonnet,boot,objective); SetVehicleParamsEx(carid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective); EngineSTATE[carid] = 1; OnPropUpdate(); OnPlayerUpdate(playerid); return 1; } } else SCM(playerid, COLOR_CRS3, "** The parking lot is busy, search other."); return 1; } return 1; }
  3. Salutare as dori sa ma ajutati sa fac o comanda care poate ajuta playerii sa poata face schimb de masini intre ei "/sellcarex" ( nu conteaza numele comenzii) /sellcarex pret id player/nume care sa faca schimb plus sa ia o diferenta celuilalt player.
  4. Salut vreau si eu sa fac o comanda pentru masiniile pers cand dau /changecar pret id sa pot face schimb de masina cu un alt player + dif de bani. Si nu prea stiu cum sa-l fac de la /sellto sa faca si schimb de masini.
  5. 1.Gm e virusat. 2. GF edit. 3. Nici macar un detaliu doar link-ul. 4. Post facut la batjocura.
  6. Am si eu comanda /buyinsurance pentru masini pers / motoare pers si cand intru pe server si tastez imi zice ca , comanda nu este buna dar merge cand am si masina pers si motor personal cum fac sa mearga daca am doar moto sau doar masina? if(strcmp(cmd,"/buyinsurance",true)==0) { if(IsPlayerConnected(playerid)) { new x_nr[256]; new carid = PlayerInfo[playerid][pCar]; new motoid = PlayerInfo[playerid][pMoto]; new inscarpricee = CarInfo[carid][cInscarprice]; new insmotopricee = CarInfo[motoid][cInsmotoprice]; x_nr = strtok(cmdtext, idx); if(!strlen(x_nr)) { SCM(playerid, COLOR_WHITE, "Type: /buyinsurance [car or moto]"); return 1; } if(strcmp(x_nr,"car",true) == 0) { if(PlayerInfo[playerid][pCar] != 999) { if (CarInfo[carid][cInsurancecar] == 0) { if(GetPlayerMoney(playerid) >= inscarpricee) { CarInfo[carid][cInsurancecar] = 1; format(string, sizeof(string), "Car Insurance purchased for $%s !", FormatNumber(inscarpricee)); SCM(playerid, COLOR_CRS2, string); GivePlayerMoney(playerid, - inscarpricee); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[carid][cInsurancecar] == 1) { if(GetPlayerMoney(playerid) >= inscarpricee) { CarInfo[carid][cInsurancecar] = 2; format(string, sizeof(string), "Car Insurance purchased for $%s !", FormatNumber(inscarpricee)); SCM(playerid, COLOR_CRS2, string); GivePlayerMoney(playerid, - inscarpricee); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[carid][cInsurancecar] == 2) { if(GetPlayerMoney(playerid) >= inscarpricee) { CarInfo[carid][cInsurancecar] = 3; format(string, sizeof(string), "Car Insurance purchased for $%s !", FormatNumber(inscarpricee)); SCM(playerid, COLOR_CRS2, string); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) GivePlayerMoney(playerid, - inscarpricee); SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[carid][cInsurancecar] == 3) { if(GetPlayerMoney(playerid) >= inscarpricee) { CarInfo[carid][cInsurancecar] = 4; format(string, sizeof(string), "Car Insurance purchased for $%s !", FormatNumber(inscarpricee)); SCM(playerid, COLOR_CRS2, string); GivePlayerMoney(playerid, - inscarpricee); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[carid][cInsurancecar] == 4) { if(GetPlayerMoney(playerid) >= inscarpricee) { CarInfo[carid][cInsurancecar] = 5; format(string, sizeof(string), "Car Insurance purchased for $%s !", FormatNumber(inscarpricee)); SCM(playerid, COLOR_CRS2, string); GivePlayerMoney(playerid, - inscarpricee); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); return 1; } else SCM(playerid, COLOR_GREY, "** You arleady have five insurances for your car !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else SCM(playerid, COLOR_GREY, "** You don't own a car !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if(strcmp(x_nr,"moto",true) == 0) { if(PlayerInfo[playerid][pMoto] != 9999) { if (CarInfo[motoid][cInsurancemoto] == 0) { if(GetPlayerMoney(playerid) >= insmotopricee) { CarInfo[motoid][cInsurancemoto] = 1; GivePlayerMoney(playerid, - insmotopricee); format(string, sizeof(string), "Moto Insurance purchased for $%s !", FormatNumber(insmotopricee)); SCM(playerid, COLOR_CRS2, string); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[motoid][cInsurancemoto] == 1) { if(GetPlayerMoney(playerid) >= insmotopricee) { CarInfo[motoid][cInsurancemoto] = 2; GivePlayerMoney(playerid, - insmotopricee); format(string, sizeof(string), "Moto Insurance purchased for $%s !", FormatNumber(insmotopricee)); SCM(playerid, COLOR_CRS2, string); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[motoid][cInsurancemoto] == 2) { if(GetPlayerMoney(playerid) >= insmotopricee) { CarInfo[motoid][cInsurancemoto] = 3; GivePlayerMoney(playerid, - insmotopricee); format(string, sizeof(string), "Moto Insurance purchased for $%s !", FormatNumber(insmotopricee)); SCM(playerid, COLOR_CRS2, string); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[motoid][cInsurancemoto] == 3) { if(GetPlayerMoney(playerid) >= insmotopricee) { CarInfo[motoid][cInsurancemoto] = 4; GivePlayerMoney(playerid, - insmotopricee); format(string, sizeof(string), "Moto Insurance purchased for $%s !", FormatNumber(insmotopricee)); SCM(playerid, COLOR_CRS2, string); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else if (CarInfo[motoid][cInsurancemoto] == 4) { if(GetPlayerMoney(playerid) >= insmotopricee) { CarInfo[motoid][cInsurancemoto] = 5; GivePlayerMoney(playerid, - insmotopricee); format(string, sizeof(string), "Moto Insurance purchased for $%s !", FormatNumber(insmotopricee)); SCM(playerid, COLOR_CRS2, string); PlayerPlaySound(playerid, 1054, 0.0, 0.0, 10.0) SaveCarCoords(); OnPropUpdate(); } else SCM(playerid, COLOR_GREY, "** You don't have enough cash with you !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else SCM(playerid, COLOR_GREY, "** You arleady have five insurances for your moto !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } else SCM(playerid, COLOR_GREY, "** You don't own a moto !"); PlayerPlaySound(playerid, 1055, 0.0, 0.0, 10.0) return 1; } } return 1; }
  7. Salutare, am si eu o problema am vrut sa adaug ca job Farmer si dupa ce fac tot foarte atent imi apar 26 errors de la un "}" lipsa am cautat cu "missing brackets finder" si sterg partea aceea sa vad daca cu adevarat e de acolo si dupaia tot imi da si se muta la alta functie care nu are nimic in neregula. Si ce e ori e bug si apare de nebun ori nu pot baga Farmer:|. Daca poate cineva sa ma ajute cu jobul sa postez va rog. C:\Downloads\0.3d\pawno\include\Rotative.inc(91) : error 004: function "OnObjectRotated" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(3673) : error 017: undefined symbol "PlayerBowlingFile" C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5590) : error 004: function "SetPlayerToTeamColor" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5615) : error 004: function "SetPlayerToTeamColor" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5670) : error 004: function "IsAnOwnableCar" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5680) : error 004: function "IsAnOwnableEli" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5690) : error 004: function "IsAnOwnableBoat" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5788) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5792) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5806) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5810) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5814) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5818) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5822) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5826) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5830) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5844) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5848) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5852) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5856) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5860) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5869) : error 004: function "IsAnOwnableCar" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5871) : error 004: function "SetVehicleModifications" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5882) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5886) : error 004: function "PlayerToPoint" is not implemented C:\Downloads\0.3d\gamemodes\Teddy23.pwn(5890) : error 004: function "PlayerToPoint" is not implemented Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 26 Errors.
  8. Nu vrea sa apara : Alecsandro(id meu din joc 1 ex) Admin Level 6 si la final cati admini sunt: Sunt 2 admin onine sau: Nu sunt admini online.
  9. As dori sa fac job-ul Garbage Collector (Gunoier) Si nu prea ma pricep cum sa fac , m-ati putea ajuta va rog?!
  10. Salut am si eu problema vreau sa fac comanda /admins asa: http://imageshack.us/photo/my-images/841/samp018qk.png/ Si nu stiu cum sa fac , sper sa nu va deranjez cu problemele mele dar imi trebuie. if (strcmp(cmd, "/admins", true) == 0) { if(IsPlayerConnected(playerid)) { SCM(playerid, COLOR_LIGHTRED, "|_____________________________ Admins Online _____________________________|"); for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { if(PlayerInfo[i][pAdmin] == 1) { GetPlayerName(i, sendername, sizeof(sendername)); format(string, 128, "Trial Admin - %s, level %d [ID: %d]", sendername, PlayerInfo[i][pAdmin], i); SCM(playerid, 0xDFE200FF, string); } if(PlayerInfo[i][pAdmin] == 2) { GetPlayerName(i, sendername, sizeof(sendername)); format(string, 128, "Regular admin - %s, level %d [ID: %d]", sendername, PlayerInfo[i][pAdmin], i); SCM(playerid, 0x00B8D7FF, string); } if(PlayerInfo[i][pAdmin] == 3) { GetPlayerName(i, sendername, sizeof(sendername)); format(string, 128, "Super admin - %s, level %d [ID: %d]", sendername, PlayerInfo[i][pAdmin], i); SCM(playerid, 0x796600FF, string); } if(PlayerInfo[i][pAdmin] == 4) { GetPlayerName(i, sendername, sizeof(sendername)); format(string, 128, "Lead admin - %s, level %d [ID: %d]", sendername, PlayerInfo[i][pAdmin], i); SCM(playerid, 0x00EC00FF, string); } if(PlayerInfo[i][pAdmin] == 1337) { GetPlayerName(i, sendername, sizeof(sendername)); format(string, 128, "Head admin - %s, level %d [ID: %d]", sendername, PlayerInfo[i][pAdmin], i); SCM(playerid, COLOR_RED, string); } if(PlayerInfo[i][pAdmin] == 1338) { GetPlayerName(i, sendername, sizeof(sendername)); format(string, 128, "Server administrator - %s, level %d [ID: %d]", sendername, PlayerInfo[i][pAdmin], i); SCM(playerid, COLOR_LIGHTRED, string); } } } } return 1; }
  11. Ms mult frate nici nu sti cat de mult apreciez:X. Multumesc foarte mult ca mi-ai acordat atentie si ai facut si un link pentru mine. Raman dator.
  12. Nu merge apare asa insa nu canta deloc:((. Sau daca sti vreun link cu .mp3 ca ala godfather dar cu pirates of the caribbean theme song. http://imageshack.us/photo/my-images/194/samp000um.png/
  13. Am facut ce a scris tu la youtube , dar nu canta apare Audio Stream: linkul youtube,etc. YoutubeStream(playerid, "youtube.com/watch?v=27mB8verLK8"); Asa am in Gamemode si nu vrea deloc sa cante :|.
  14. Am pus include de la Youtube streamer am facut tot cum trebuie pun link youtube si cand intru imi canta o melodie din samp total aiurea. M-am uitat si nu e pus niciun playplayersound. As fi recunoscator daca as rezolva.:)
  15. Multumesc mult frate , chiar imi este de folos, il folosesc merge perfect;) 5/5:).
  16. Am rezolvat datorita ajutorului tau , ms mult.
  17. Am vrut sa fac sa apara : " Admin X-ulescu : Numai faceti spam sau primit kick! Si sa apara Admin si ce spune cu alb dar "X-ulescu" cu culoarea rosie. Si imi apar caractere aiurea. Aceasta e comanda. if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0) { if(IsPlayerConnected(playerid)) { 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)) { SCM(playerid, COLOR_GRAD2, "Syntax: (/a)dmin [admin chat]"); return 1; } result[0] = toupper(result[0]); format(string, sizeof(string), "*{1FE9FF}%d Admin {1FE9FF}%s:", PlayerInfo[playerid], sendername, result); if (PlayerInfo[playerid][pAdmin] == 6) { SendAdminMessage(COLOR_WHITE, string); return 1; } if (PlayerInfo[playerid][pAdmin] >= 1) { SendAdminMessage(COLOR_WHITE, string); } printf("Admin %s: %s", sendername, result); new y,m,d; new h,mi,s; getdate(y,m,d); gettime(h,mi,s); format(string, sizeof(string), "(%d/%d/%d)[%d:%d:%d]*%d Admin %s: %s",d,m,y,h,mi,s,PlayerInfo[playerid][pAdmin], sendername, result); CAdminLog(string); } return 1; }
  18. am facut asa si am primit eroare asta! C:\Downloads\0.3d\gamemodes\Teddy23.pwn(34925) : error 029: invalid expression, assumed zero
  19. Salut stiu ca nu e o problema dar am nevoie de ajutor si nush cum sa fac. Am sistemul la masini personale cu /v lock , park , buy etc Si vreau sa fie fare prefixul /v" vreau sa fac /lockcar /parkcar cu aceleasi coduri de comanda. Exemplu /v buy sa-l fac /buyvehicle if(strcmp(cmd, "/v", true) == 0 || strcmp(cmd, "/vehicle", true) == 0) { if(IsPlayerConnected(playerid)) { if(gPlayerLogged[playerid] == 0) { SCM(playerid, COLOR_GREY, " You need to login first ! "); return 1; } new x_nr[64]; x_nr = strtok(cmdtext, idx); if(!strlen(x_nr)) { SCM(playerid, COLOR_WHITE, "HINT: (/v)ehicle [name]"); SCM(playerid, COLOR_WHITE, "Available names: park, lock1,lock2 sell, sellto, color, tow1, tow2 locate1,locate2, plate"); return 1; } else if(strcmp(x_nr,"buy",true) == 0) { if(IsAnOwnableCar(idcar)) { if(PlayerInfo[playerid][pLevel] < 4) { SendClientMessage(playerid, COLOR_GREY, "You need to be level 4 to buy a vehicle!"); return 1; } if(PlayerInfo[playerid][pPcarkey] == 999) { } else if(PlayerInfo[playerid][pPcarkey2] == 999) { } else { SendClientMessage(playerid, COLOR_WHITE, "You owned already two cars"); return 1; } if(CarInfo[idcar][cOwned]==1) { SendClientMessage(playerid, COLOR_WHITE, "Someone owned already this car"); return 1; } if(GetPlayerMoney(playerid) >= CarInfo[idcar][cValue]) { if(PlayerInfo[playerid][pPcarkey] == 999) { PlayerInfo[playerid][pPcarkey] = idcar; } else if(PlayerInfo[playerid][pPcarkey2] == 999) { PlayerInfo[playerid][pPcarkey2] = idcar; } else { return 1; } CarInfo[idcar][cComponent0] = 0; CarInfo[idcar][cComponent1] = 0; CarInfo[idcar][cComponent2] = 0; CarInfo[idcar][cComponent3] = 0; CarInfo[idcar][cComponent4] = 0; CarInfo[idcar][cComponent5] = 0; CarInfo[idcar][cComponent6] = 0; CarInfo[idcar][cComponent7] = 0; CarInfo[idcar][cComponent8] = 0; CarInfo[idcar][cComponent9] = 0; CarInfo[idcar][cComponent10] = 0; CarInfo[idcar][cComponent11] = 0; CarInfo[idcar][cComponent12] = 0; CarInfo[idcar][cComponent13] = 0; CarInfo[idcar][cOwned] = 1; GetPlayerName(playerid, sendername, sizeof(sendername)); strmid(CarInfo[idcar][cOwner], sendername, 0, strlen(sendername), 999); GivePlayerMoney(playerid,-CarInfo[idcar][cValue]); PlayerPlayMusic(playerid); GameTextForPlayer(playerid, "~w~Congratulations~n~Don't forget to /v park it!", 5000, 3); SCM(playerid, COLOR_GRAD2, "Congratulations on your new purchase!"); SCM(playerid, COLOR_GRAD2, "Type /vehiclehelp to view the vehicle manual!"); SendClientMessage(playerid, COLOR_YELLOW2, "You can start the engine up now !"); gEngine[playerid] = 0; engineOn[GetPlayerVehicleID(playerid)] = false; OnPropUpdate(); OnPlayerUpdate(playerid); TogglePlayerControllable(playerid, 1); return 1; } else { SCM(playerid, COLOR_GREY, " You don't have enough cash with you ! "); return 1; } } }
  20. Am pus in GM la OnplayerSpawn , PlayAudioStreamForPlayer(playerid, "http://gta-cp.info/sounds/Godfather.mp3"); Imi da asta undefined symbol "PlayAudioStreamForPlayer". Daca dau #define PlayAudioStreamForPlayer imi da warning "warning 215: expression has no effect" PS: Am include tot , 0.3d . Cand intru nu canta.
  21. Salut , am si eu putin nevoie de ajutor daca doriti. Am sistemul de masini al lui Ping [Car Dealership] si m-ar interesa cum sa rezolv un mic bug cand proprietarul masini iese masina dispare a si ce sa adaug in fs ca sa am "/plate" , "/findcar" daca sunteti amabili sa ma ajutati. Si cum as putea sa fac AFK sistem in asa fel cand dau /afk sau /sleep sa se puna in anim-ul dorit sau un anumit anim sa mearga si in casa si afara.
×
×
  • 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.