Jump to content

QuickSilver

Membru
  • Posts

    12
  • Joined

  • Last visited

    Never

Recent Profile Visitors

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

QuickSilver's Achievements

Apprentice

Apprentice (3/14)

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

Recent Badges

0

Reputation

  1. Am modificat dar... [pawn]C:\Users\User\Downloads\BloWn GM\gamemodes\Carbon.pwn(37) : fatal error 100: cannot read from file: "numbers" Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.[/pawn] Ms Seven +1
  2. Ok..e super gm-ul dar cea ce nu inteleg am admin 999999 dat din wamp si nu pot folosi /setadmin sau /setagent,/destroycar si altele..dc?
  3. Aceasi problema ca Robertu331 am schimbat de pe 0.3x pe 0.3x-R2 si am schimbate unele chesti din server.cfg dar odata mi-a mers..si atunci alta problema scri parola sa iti faci cont de 30000 mii de ori si tot nu iti creaza contul...dece?
  4. Am rezolvat...bine ca nu am inchis GM-ul..pentru ca am schimbat un id la o masina de factiune si trebuie sa plec in acel moment..dar am rezolvat cu Undo...Ms WzP
  5. Daca adaugam ceva din greseala imi apare cred adica linie care este gresita gent error:69833..eu cred ca este altcva
  6. [pawn]D:\Downloads\New folder\GamerZone\GamerZone\pawno\include\core.inc(12) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase [/pawn] 1 Error. Ma ajuta cineva?
  7. Foarte bun..doar ca mai trebuia adaugat : [pawn]GetPlayerName(playerid, sendername, sizeof(sendername));[/pawn] in fata la codul tau pentru a se vedea numele adminului /gotocar complet [pawn] if(strcmp(cmd, "/gotocar", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /gotocar [carid]"); return 1; } new testcar = strval(tmp); if (PlayerInfo[playerid][pAdmin] >= 1) { if(PlayerInfo[playerid][pJailed] == 1) { SendClientMessage(playerid,COLOR_GREY," Nu poti folosi aceasta comanda daca esti la inchisoare !"); return 1; } new Float:cwx2,Float:cwy2,Float:cwz2; GetVehiclePos(testcar, cwx2, cwy2, cwz2); if (GetPlayerState(playerid) == 2) { new tmpcar = GetPlayerVehicleID(playerid); SetVehiclePos(tmpcar, cwx2, cwy2, cwz2); TelePos[playerid][0] = 0.0;TelePos[playerid][1] = 0.0; } else { SetPlayerPos(playerid, cwx2, cwy2, cwz2); } GetPlayerName(playerid, sendername, sizeof(sendername)); format(string, sizeof(string), "{0099FF}[iNFO]{FFFFFF}: Admin %s a folosit comanda /gotocar la masina cu {0099FF}[iD CAR: %d]{FFFFFF}!",sendername,testcar); ABroadCast(COLOR_LIGHTRED,string, 5); SetPlayerInterior(playerid,0); } else { SendClientMessage(playerid, COLOR_GRAD1, " Nu esti autorizat sa folosesti aceasta comanda!"); } } return 1; }[/pawn] /getcar complet [pawn] if(strcmp(cmd, "/getcar", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /getcar [carid]"); return 1; } new Float:plocx,Float:plocy,Float:plocz; new plo; new plo2; plo = strval(tmp),GetPlayerName(plo, giveplayer, sizeof(giveplayer)); if (PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pAgent] >= 4) { GetPlayerName(playerid, sendername, sizeof(sendername)); GetPlayerPos(playerid, plocx, plocy, plocz); SetVehiclePos(plo,plocx,plocy+4, plocz); format(string, sizeof(string), "{0099FF}[iNFO]{FFFFFF}: Admin %s a adus la el Masina cu {0099FF}[iD CAR: %d]",sendername,plo,plo2); ABroadCast(COLOR_LIGHTRED,string, 5); } else { SendClientMessage(playerid, COLOR_GRAD1, " Nu esti autorizat sa folosesti aceasta comanda!"); } } return 1; }[/pawn] Ms mult WaZP PS:Puteti inchide topicul
  8. Salutare,sunt incepator si as vrea putin ajutor..la comanda getcar si gotocar..deci am incercat si nu mi.a iesit sa fac un text la amandoua de exp la getcar:[Admin/Nume]a adus la el masina cu id[id/Masina] si la gotocar "[Admin/Nume] s-a teleportat la masina cu id[id/Masina] ma poate ajuta cineva?? /GETCAR [pawn] if(strcmp(cmd, "/getcar", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /getcar [carid]"); return 1; } new Float:plocx,Float:plocy,Float:plocz; new plo; plo = strval(tmp); if (PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pAgent] >= 4) { GetPlayerPos(playerid, plocx, plocy, plocz); SetVehiclePos(plo,plocx,plocy+4, plocz); } else { SendClientMessage(playerid, COLOR_GRAD1, " nu esti autorizat sa folosesti aceasta comanda!"); } } return 1; }[/pawn] /GOTOCAR [pawn] if(strcmp(cmd, "/gotocar", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /gotocar [carid]"); return 1; } new testcar = strval(tmp); if (PlayerInfo[playerid][pAdmin] >= 1) { if(PlayerInfo[playerid][pJailed] == 1) { SendClientMessage(playerid,COLOR_GREY," Nu poti folosi aceasta comanda daca esti la inchisoare !"); return 1; } new Float:cwx2,Float:cwy2,Float:cwz2; GetVehiclePos(testcar, cwx2, cwy2, cwz2); if (GetPlayerState(playerid) == 2) { new tmpcar = GetPlayerVehicleID(playerid); SetVehiclePos(tmpcar, cwx2, cwy2, cwz2); TelePos[playerid][0] = 0.0;TelePos[playerid][1] = 0.0; } else { SetPlayerPos(playerid, cwx2, cwy2, cwz2); } SendClientMessage(playerid, COLOR_GRAD1, " Te-ai teleportat la vehicul cu succes!!"); SetPlayerInterior(playerid,0); } else { SendClientMessage(playerid, COLOR_GRAD1, " Nu esti autorizat sa folosesti aceasta comanda!"); } } return 1; }[/pawn]
  9. Ms mult,foarte folositor! :)
  10. Am inteles si iti multumesc pentru raspuns dar cea ce caut este un filescript sau o comanda exp /setimunity care,cu aceasta in joc cand am dat /setimunity [playerid] acel player sa primeasca imunitate la slap,ban,kick..in acelas timp sa apara de exp"Playerul "x" a primit imunitate la slap,ban sau kick"si ca nimeni sa nu poata da ban,kick sau slap acelui player..sincer sunt putin incepator si nu sunt sigur daca este din GM sa faci comanda sau FileScript dar cred ca este FileScript pentru ca in acelasi timp cel ce incearca sa ii dea bann,slap sau kick primeste acel care incearca..oricum e ceva misto..problema este ca am cautat peste tot sau aproape peste tot si nu gasesc nimic..
  11. Am vazut pe unele servere cand admini au dat"inmunitate la slap,kick sau ban"la un alt admin,cum se poate face asa ceva?sau exista vreun fs ceva?daca stie cineva l-as ruga frumos sa imi spuna!
×
×
  • 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.