Jump to content

Alecsandro

Membru
  • Posts

    22
  • Joined

  • Last visited

    Never

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Alecsandro's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  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.:)
×
×
  • 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.