Jump to content

Iulian

Membru
  • Posts

    191
  • Joined

  • Last visited

Everything posted by Iulian

  1. Iulian

    Ajutor

    [pawn]SetVehicleVelocity(vehicleid, Float:x, Float:y, Float:z);[/pawn] Si X Y Z? cu ce le inlocuiesc ?
  2. Iulian

    Ajutor

    Buna, am vazut pe multe servere ca isi modifca masinile din GM cum pot face si eu asta ? sa prinda ex 500 km/h ?
  3. Am cautat tot si am scos acel FS si a trecut deja o ora Inca nu am fost bannat cred ca acel FS era cauza
  4. Am un FS intitular "PING" si nu are fisierul .pwn .. si are ANTI-DEAMX ) Posibil ca acel fisier sa fie o comanda nu? pentru ca nu am vazut folosul acelui FS :|
  5. Nu merge.. :| comanda /abc123rconDOIXD :| ce pot face ? Si am scos toate comenzile mele de rezerva :P
  6. Salut, am si eu un server de samp si tot intra cineva si se face admin ( Am bagat asta [pawn]public OnRconLoginAttempt(ip[], password[], success) { if(success) return 1; new pip[16], pName[24]; for(new i=0; i<MAX_PLAYERS; i++) { GetPlayerIp(i, pip, sizeof(pip)); if(!strcmp(ip, pip, true)) { GetPlayerName(i, pName, 24); if(strcmp(pName, "Brain_OConner")) { SendClientMessage(i, COLOR_LIDER, "Nu esti Brain!"); PlayerInfo[pLocked] = 1 Ban(i); } } } return 1; }[/pawn] si tot ma baneaza ( va rog ma ajutati ?
  7. Poti face un CABINET sau DULAP de unde sa isi ia ei aceste SKINURI :P
  8. Am luat LUX SPEEDOMETER de pe sa-mp.com si cand ma teleportez la un player si sunt in masina trebuie sa imi dau de fiecare data /unfreeze :| Ma ajutati si pe mine? http://forum.sa-mp.com/showthread.php?t=91403
  9. Buna, Am facut o mapa sa o bag prin oras si cum fac obiectele sa fie cu "CreateDynamicObject" ? Va rog ajutor Merci
  10. Incerc si te anunt Multumesc
  11. Am creeat niste conturi premium, si le-am dat SetPlayerColor.. Deci cum pot face sa ascund culoarea pe harta?
  12. Auzi daca eu am un folder numit user si editez acolo "Account/%.ini" in "User/%.ini" are vre-o problema sau un defect?
  13. Buna vreau sa fac o comanda /pchat (pentru intrare si iesire din chatul premium si sa o adaug in gm) Cand scrie cineva /pchat sa anunte membrii de pe chatul premium (doar cei care sunt conectati) ca a intrat/iesit un player [pawn] if(strcmp(cmd, "/premium", true) == 0 || strcmp(cmd, "/p", 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)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/p)remium [premium chat]"); return 1; } format(string, sizeof(string), "{FF00FF}Admin{FFFFFF} %s: %s", sendername, result); if (PlayerInfo[playerid][pAdmin] >= 1) { SendPremiumMessage(0x999900FF, string); } else if(PlayerInfo[playerid][pDonateRank] >= 1) { format(string, sizeof(string),"{FFCC00}Premium {FFFFFF}%s: %s", sendername, result); SendPremiumMessage(0x999900FF, string); } printf("Admin %s: %s", sendername, result); } return 1; }[/pawn]
  14. 9.5/10 un incepator nu prea intelege adica mai greu dar .. [move]GOOD JOB[/move]
  15. Game Monitor e gratuit da ip prin pm si ti-l dau inapoi ;)
  16. Buna vreau sa fac o comanda /pchat (pentru intrare si iesire din chatul premium si sa o adaug in gm) Cand scrie cineva /pchat sa anunte membrii de pe chatul premium (doar cei care sunt conectati) ca a intrat/iesit un player [pawn] if(strcmp(cmd, "/premium", true) == 0 || strcmp(cmd, "/p", 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)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/p)remium [premium chat]"); return 1; } format(string, sizeof(string), "{FF00FF}Admin{FFFFFF} %s: %s", sendername, result); if (PlayerInfo[playerid][pAdmin] >= 1) { SendPremiumMessage(0x999900FF, string); } else if(PlayerInfo[playerid][pDonateRank] >= 1) { format(string, sizeof(string),"{FFCC00}Premium {FFFFFF}%s: %s", sendername, result); SendPremiumMessage(0x999900FF, string); } printf("Admin %s: %s", sendername, result); } return 1; }[/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.