Jump to content

Verde

Membru
  • Posts

    19
  • Joined

  • Last visited

    Never

Verde's Achievements

Explorer

Explorer (4/14)

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

Recent Badges

0

Reputation

  1. Cum pot sa maresc banii la joburi ? folosesc gm-ul pro-gaming
  2. Are cineva comanda /editpricecar sa mi-o dea si mie..?
  3. O stergi si incerci alta?
  4. Stiti cumva de ce nu mi se salveaza tunning-ul pe server..?
  5. Cand il compilez imi da.. : C:\Users\Administrator\Desktop\speed.pwn(480) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(490) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(500) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(510) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(520) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(530) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(540) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(550) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(560) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(570) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(583) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(596) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(609) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(619) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(629) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(642) : error 017: undefined symbol "TextDrawSetSelectable" C:\Users\Administrator\Desktop\speed.pwn(655) : error 017: undefined symbol "TextDrawSetSelectable"
  6. Verde

    4 erori..

    Multumesc , a mers.
  7. Verde

    4 erori..

    De ce imi da aceste erori? C:\Users\Administrator\Desktop\SAMP\Case orase editor\Romania-RPG\Romania-RPG\gamemodes\ftrp.pwn(1993) : error 017: undefined symbol "PlayerInfo" C:\Users\Administrator\Desktop\SAMP\Case orase editor\Romania-RPG\Romania-RPG\gamemodes\ftrp.pwn(1993) : warning 215: expression has no effect C:\Users\Administrator\Desktop\SAMP\Case orase editor\Romania-RPG\Romania-RPG\gamemodes\ftrp.pwn(1993) : error 001: expected token: ";", but found "]" C:\Users\Administrator\Desktop\SAMP\Case orase editor\Romania-RPG\Romania-RPG\gamemodes\ftrp.pwn(1993) : error 029: invalid expression, assumed zero C:\Users\Administrator\Desktop\SAMP\Case orase editor\Romania-RPG\Romania-RPG\gamemodes\ftrp.pwn(1993) : fatal error 107: too many error messages on one line Linia 1993 : if(PlayerInfo[playerid][pInGG] == 1 && IsGunGame == 1)
  8. Verde

    Cum pot face

    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; } Sa apara si masina.. pe care o aduc la mine
  9. Verde

    Cum pot face

    Si cand aduc o masina?
  10. Verde

    Cum pot face

    N-ai inteles.. mie nu-mi apare numele playerului pe care il teleportez :)
  11. Verde

    Comanda

    Cu un restart la sv se rezolva.
  12. Da, fiindca nivelul meu nu se compara cu al tau.
  13. Deci am incercat sa fac din comanda /gethere sa apara asa : Adminul x a adus la el playerul x ... imi apare doar Adminul x a adus playerul. Cum pot face sa apara si pe cine am adus? comanda.. : if(strcmp(cmd, "/gethere", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /gethere [playerid/PartOfName]"); return 1; } new Float:plocx,Float:plocy,Float:plocz; new plo; plo = ReturnUser(tmp); if (IsPlayerConnected(plo)) { if(plo != INVALID_PLAYER_ID) { if (PlayerInfo[plo][pAdmin] > 7) { SendClientMessage(playerid, COLOR_GRAD1, "Ask the admin to goto you."); return 1; } if(PlayerInfo[plo][pJailed] == 1) { SendClientMessage(playerid, 0x0000D2FF, "Playerul acela este in jail!"); return 1; } if (PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pAgent] >= 3) { GetPlayerPos(playerid, plocx, plocy, plocz); if(PlayerInfo[playerid][pInt] > 0) { SetPlayerInterior(plo,PlayerInfo[playerid][pInt]); PlayerInfo[plo][pInt] = PlayerInfo[playerid][pInt]; PlayerInfo[plo][pLocal] = PlayerInfo[playerid][pLocal]; } if(PlayerInfo[playerid][pInt] == 0) { SetPlayerInterior(plo,0); } if(plocz > 930.0 && PlayerInfo[playerid][pInt] == 0) //the highest land point in sa = 526.8 { SetPlayerInterior(plo,1); PlayerInfo[plo][pInt] = 1; } if (GetPlayerState(plo) == 2) { TelePos[plo][0] = 0.0; TelePos[plo][1] = 0.0; new tmpcar = GetPlayerVehicleID(plo); SetVehiclePos(tmpcar, plocx, plocy+4, plocz); } else { SetPlayerPos(plo,plocx,plocy+2, plocz); } SendClientMessage(playerid, COLOR_GRAD1, " Te-ai teleportat cu succes !"); GetPlayerName(playerid, sendername, sizeof(sendername)); format(string, 256, "{3366FF}Adminul{FFFFFF} {FF0000}%s{FFFFFF} {3366FF}a adus la el playerul{FFFFFF} {FFD700}%s{FFFFFF}", sendername); ABroadCast(COLOR_ORANGE,string,1); SetPlayerInterior(playerid,0); PlayerInfo[playerid][pInt] = 0; } else { SendClientMessage(playerid, COLOR_GRAD1, " nu esti autorizat sa folosesti aceasta comanda!"); } } } else { format(string, sizeof(string), " %d nu este online.", plo); SendClientMessage(playerid, COLOR_GRAD1, string); } } return 1; }
  14. Verde

    Problema

    Am rezolvat.. doar am inlocuit ce am modificat ) si a mers
×
×
  • 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.