Jump to content

TzAkS

Membru
  • Posts

    1,144
  • Joined

  • Last visited

Everything posted by TzAkS

  1. http://wiki.sa-mp.com/wiki/OnPlayerClickPlayer
  2. TzAkS

    Plugin radio

    Nu se cer scripturi/pluginuri..etc! Citeste regulamentul
  3. Pune pluginurile care le foloseste serverul. Sper ca nu faci post sa ne intrebi ce pluginuri
  4. This topic has been moved to Ajutor Servere. [iurl]http://www.sa-mp.ro/forum/index.php?topic=21353.0[/iurl]
  5. TzAkS

    Website!!

    http://www.sa-mp.ro/forum/index.php/topic,2825.0.html
  6. Este un bug de la junkbuster.Ori il scoti ori ii faci update la Junkbuster 11. TItlu!
  7. TzAkS

    Stremer

    "Poi" poate nu ai pus celelalte pluginuri,posteaza toata eroarea si vezi in server.log daca se incarca toate pluginurile.
  8. TzAkS

    CMDS

    Ti`am zis sa creezi alt string cum e cmds1 sa faci si 2 si pui urmatoarele comenzi acolo.
  9. De acum unde avem erori/warningur stergem nu? Pune X1 Y1 Z1 pentru ca X Y Z le folosesti deja.
  10. TzAkS

    Intrebare

    Probabil.. Nu se cer fs-uri,Titlu!
  11. [pawn]ShowPlayerDialog(playerid,12345,DIALOG_STYLE_INPUT,"wh""Register",regstring,"Register","Exit");[/pawn]
  12. Pune inafara unu callback asta strtok(const string[], &index) { new length = strlen(string); while ((index < length) && (string[index] <= ' ')) { index++; } new offset = index; new result[20]; while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1))) { result[index - offset] = string[index]; index++; } result[index - offset] = EOS; return result; } LoadFamilies,nu ai niciun public la el,LoadTDHR si f2text nu le-ai creat,daca nu te descurci posteaza liniile.
  13. http://forum.sa-mp.com/showthread.php?t=102865 Pui include-ul,compilezi si pui pluginul. 2x post = warn(iar)
  14. Tu la ora 6 dimineata astepti ajutor? Si faci si 3x post.
  15. Descarca alt include dutils. C:\Server03D\pawno\include\JunkBuster.inc(3234) : warning 201: redefinition of constant/macro (symbol "OnPlayerEnterRaceCheckpoint") Asta e pus si in gm si in include. Titlu!
  16. This topic has been moved to Ajutor Servere. [iurl]http://www.sa-mp.ro/forum/index.php?topic=21168.0[/iurl]
  17. Nu,citeste regulamentul.
  18. [pawn]#include <a_samp> new Text:scoreandping[MAX_PLAYERS]; new pDrunkLevelLast[MAX_PLAYERS]; new pFPS[MAX_PLAYERS]; new Updater; forward ScorenPing(playerid); public OnFilterScriptInit()// OnGameModeInIt And/Or OnFilterscriptInIt(); { Updater = SetTimer("ScorenPing", 1000, 1); } public OnFilterScriptExit()// OnGameModeExit And/Or OnFilterScriptExit(); { KillTimer(Updater); } // OnPlayerConnect Stuff. public OnPlayerConnect(playerid) { SendClientMessage(playerid,-1," This Server Uses lScore'n'Ping System By Littlehelper AKA iKing"); scoreandping[playerid] = TextDrawCreate(10.000000,430.000000,"Loading Statistics!"); TextDrawAlignment(scoreandping[playerid],0); TextDrawBackgroundColor(scoreandping[playerid],0x000000ff); TextDrawFont(scoreandping[playerid],1); TextDrawLetterSize(scoreandping[playerid],0.500000,1.5); TextDrawColor(scoreandping[playerid],0xffffffff); TextDrawSetOutline(scoreandping[playerid],1); TextDrawSetProportional(scoreandping[playerid],1); TextDrawSetShadow(scoreandping[playerid],1); TextDrawShowForPlayer(playerid, scoreandping[playerid]); return 1; } // OnPlayerDisconnect Stuff. public OnPlayerDisconnect(playerid, reason) { TextDrawDestroy(scoreandping[playerid]); return 1; } // Publics. public OnPlayerUpdate(playerid) { // handle fps counters. new drunknew; drunknew = GetPlayerDrunkLevel(playerid); if (drunknew < 100) { // go back up, keep cycling. SetPlayerDrunkLevel(playerid, 2000); } else { if (pDrunkLevelLast[playerid] != drunknew) { new wfps = pDrunkLevelLast[playerid] - drunknew; if ((wfps > 0) && (wfps < 200)) pFPS[playerid] = wfps; pDrunkLevelLast[playerid] = drunknew; } } } public ScorenPing(playerid) { for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { new string[256]; format(string,sizeof(string),"Score:~b~%d ~w~Ping:~b~%d ~w~FPS:~b~%d",GetPlayerScore(playerid),GetPlayerPing(playerid),GetPlayerFPS(playerid)); TextDrawSetString(scoreandping, string); } } } // Added FPS On Request. stock GetPlayerFPS(playerid) { SetPVarInt(playerid, "DrunkL", GetPlayerDrunkLevel(playerid)); if(GetPVarInt(playerid, "DrunkL") < 100) { SetPlayerDrunkLevel(playerid, 2000); } else { if(GetPVarInt(playerid, "LDrunkL") != GetPVarInt(playerid, "DrunkL")) { SetPVarInt(playerid, "FPS", (GetPVarInt(playerid, "LDrunkL") - GetPVarInt(playerid, "DrunkL"))); SetPVarInt(playerid, "LDrunkL", GetPVarInt(playerid, "DrunkL")); if((GetPVarInt(playerid, "FPS") > 0) && (GetPVarInt(playerid, "FPS") < 256)) { return GetPVarInt(playerid, "FPS") - 1; } } } return 0; }[/pawn] Titlu!
  19. Asta e buna,da se poate rezolva facand singur un anticheat,dar mai bine folosesti unul gata facut. Titlu!
  20. Faci intrari la shopurile care le vrei,si pui comanda /enter si interiorul care il vrei.
  21. Iti trebuie un host special pentru baza de date mysql,gasesti si free sau le poti cere celor de la care ai host,daca au asa ceva. Iti voi da un pm cu un site unde o poti urca free
  22. A zis cinev sa le transformi? Am zis ca iti trebuiesc pluginurile pentru linux,nu cele de windows puse cu extensia .so Sunt total diferite pluginurile cu extensia .dll si .so
  23. Iti trebuiesc pluginurile pentru linux,si in server.cfg le scrii cu extensia .so
×
×
  • 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.