Jump to content

[XSR]NexT

V.I.P
  • Posts

    857
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by [XSR]NexT

  1. Poate invatati sa nu mai mintiti, si sa va laudati cu munca altuia. http://forum.sa-mp.com/showthread.php?t=479805
  2. Salut, eu sunt [XSR]NexT, sunt mapper, am experienta in mapping cam 3 ani jumate, si vreau sa ofer mapping contracost. Am mai vandut harti facute la comanda de mine, din pacate nu va pot arata poze deoarece cumparatorul nu vrea sa fie vazute hartile pana nu isi deschide serverul. Va pot orice fel de harta doriti, restaurante, zone de dm, zone de stunt, de race, de drift, orase, zone roleplay. Nu le am eu cu scrisul daca vreti sa va fac o harta sau mai multe la comanda adaugati-ma pe yahoo: [email protected]
  3. Ti-am dat unlock, daca se mai intampla sa fie inca 48h de inactivitate ii dau lock iar.
  4. [01:19:07] Loading plugin: mysql [01:19:47] Failed.
  5. Asa, si ce vrei sa rezolvi? cauti cu ctrl+f incontinuare si apesi pe F3 sa treaca mereu la urmatoarea.
  6. Eu ma refer ca nu vad sa fie setat 255.
  7. Eu nu vad la nici una setat virtual world 255.
  8. Ar putea fi oriunde, nu stiu la ce erau folosite.
  9. Incearca asa: if(strcmp(cmdtext, "/vestiar", true) == 0) // by LordMan { if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16) { if (IsPlayerInRangeOfPoint(playerid, 2, -780.3086,496.1252,1371.7490)) { TogglePlayerControllable(playerid, 0); ShowMenuForPlayer(myMenu, playerid); 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] %s [CMD] -> /vestiar",d,m,y,h,mi,s,sendername); CommandLog(string); return 1; } } else if(PlayerInfo[playerid][pMember] == 15 || PlayerInfo[playerid][pLeader] == 15) { if (IsPlayerInRangeOfPoint(playerid, 2, 439.0473,-12.3510,1000.7344)) { TogglePlayerControllable(playerid, 0); ShowMenuForPlayer(myMenu, playerid); 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] %s [CMD] -> /vestiar",d,m,y,h,mi,s,sendername); CommandLog(string); return 1; } } else { SendClientMessage(playerid, COLOR_GREY,"**Nu esti la vestiar."); } }
  10. [XSR]NexT

    Problema

    Incearca asa: [pawn]new Float:Xp, Float:Yp, Float:Zp, Target; GetPlayerPos(target, Xp, Yp, Zp);if(IsPlayerInRangeOfPoint(playerid, 30.0, Xp, Yp, Zp)) return SendClientMessage(playerid, COLOR_WHITE, "{FFB870}Move away from any close player before getting the work.");[/pawn]
  11. Si acolada de aici SCM(playerid, COLOR_RED, "Nu esti liderul unei factiuni !"); } === asta
  12. La multi dintre ei, nu am vazut vreodata ceva.
  13. Unde ai pus comenzile?
  14. Incearca asa: forward SetPlayerRandomSpawnJail( playerid ); public SetPlayerRandomSpawnJail( playerid ) { new rand = random( sizeof( JailSpawn ) ); SetPlayerPos( playerid, JailSpawn[ rand ][ 0 ], JailSpawn[ rand ][ 1 ], JailSpawn[ rand ][ 2 ] ); return ( 1 ); }
  15. Aici la Z, FOR[ playerid ] = CreatePlayerObject(playerid, 19471, X, Y, Z, rX, rY, rZ ); pui Z-1 sau Z-0.5 sa il creeze putin mai jos, nu am distanta exacta, incerci si tu pana gasesti distanta, incerce 1, 2, 0.ceva etc.
  16. Incearca asa: Sus in script: [pawn]new GRATAR[ MAX_PLAYERS ];[/pawn] Si comenzile: [pawn]CMD:cg( playerid, params[ ] ) { new Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ; GetPlayerPos( playerid, X, Y, Z ); GRATAR[ playerid ] = CreatePlayerObject(playerid, 1481, X, Y, Z, rX, rY, rZ ); return ( 1 ); } CMD:dg( playerid, params[ ] ) { DestroyPlayerObject( playerid, GRATAR[ playerid ] ); return ( 1 ); }[/pawn] Nu am testat, ar trebui sa mearga.
  17. objectid-ul gratarului nu il creeaza scriind id gratar, da-mi id-ul gratarului.
  18. Daca te-ai fi uitat atent ai fi vazut ca l-am pus si in functie.
  19. Sa dispara cate 2 la PayDay incearca adaugand asta: [pawn]if( GetPlayerWantedLevel(playerid) >=2 ) SetPlayerWantedLevel(playerid, GetPlayerWantedLevel(playerid)-2);[/pawn] Adica asa: [pawn] public Production() { foreach(Player, i) { if(PlayerData[pFishes] >= 5) { if(FishCount >= 3) { new query[MAX_STRING]; PlayerData[pFishes] = 0; format(query, sizeof(query), "UPDATE players SET Fishes='%d' WHERE id=%d", PlayerData[pFishes], PlayerData[pSQLID]); mysql_query(query); } else { FishCount += 1; } } if(PlayerDrunk > 0) { PlayerDrunk = 0; PlayerDrunkTime = 0; GameTextForPlayer(i, "~p~Efectul alcolemiei~n~~w~S-a dus", 3500, 1); } if( GetPlayerWantedLevel(i) >=2 ) SetPlayerWantedLevel(i, GetPlayerWantedLevel(i)-2); if(PlayerData[pPayDay] < 6) { PlayerData[pPayDay] += 1; new query[MAX_STRING]; format(query, sizeof(query), "UPDATE players SET PayDay='%d' WHERE id=%d", PlayerData[pPayDay], PlayerData[pSQLID]); mysql_query(query); } //+ 5 min to PayDay anti-abuse } } [/pawn]
×
×
  • 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.