Jump to content

danii14

Membru
  • Posts

    31
  • Joined

  • Last visited

    Never

Posts posted by danii14

  1. [pawn]C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(62) : warning 201: redefinition of constant/macro (symbol "COLOR_RED")

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3028) : error 004: function "GivePlayerCash" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3057) : error 004: function "GivePlayerCash" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3093) : error 004: function "SafeResetPlayerWeapons" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3094) : error 004: function "SafeGivePlayerWeapon" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3121) : error 004: function "SafeResetPlayerWeapons" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3633) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3645) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3657) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3669) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3673) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3685) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3689) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3693) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3697) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3701) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3705) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3709) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3713) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3725) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3729) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3733) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3737) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3741) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3753) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3757) : error 004: function "PlayerToPoint" is not implemented

    C:\Documents and Settings\Stefan\Desktop\PGRPG\GM\gamemodes\PG6.pwn(3761) : error 004: function "PlayerToPoint" is not implemented

    Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase

    26 Errors.[/pawn]

  2. Salutare SA-MP.RO . Am incercat sa fac un script de newbiechat si nu stiu unde am gresit . Problema este ca el nu imi da nicio eroare ... Merge inchis / deschis dar cand scriu cu /n nu apare nimic .

    [pawn]//----------------------------------[newbie chat]----------------------------------------

    if(strcmp(cmd, "/newbie", true) == 0 || strcmp(cmd, "/n", true) == 0)

    {

        if(IsPlayerConnected(playerid))

        {

            if(gPlayerLogged[playerid] == 0)

            {

                SendClientMessage(playerid, COLOR_GREY, "  You havent logged in yet !");

                return 1;

            }

    if ((noooc) && PlayerInfo[playerid][pAdmin] < 1)

    {

    SendClientMessage(playerid, COLOR_GRAD2, "  The OOC channel has been disabled by an Admin !");

    return 1;

    }

    if(PlayerInfo[playerid][pMuted] == 1)

    {

    SendClientMessage(playerid, TEAM_CYAN_COLOR, "  You can't speak, you have been silenced !");

    return 1;

    }

    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++;

    }

    for(new i=0; i<MAX_PLAYERS; i++)

    if(FindIP(result)) ///

    {

      new advertiser[MAX_PLAYER_NAME];

      GetPlayerName(playerid, advertiser, sizeof(advertiser));

      format(string, sizeof(string), "[Warning]: %s[iD: %d] face reclama ",advertiser,i);

      ABroadCast(COLOR_LIGHTRED,string,1);

      return 0;

    }

    result[idx - offset] = EOS;

    if(!strlen(result))

    {

    SendClientMessage(playerid, COLOR_GRAD2, "{55D4FF}SCRIE:{B4B4B4} (/n)ewbie [text]");

    return 1;

    }

    if(PlayerInfo[playerid][pLevel] == 1)

    format(string, sizeof(string), "{7F90E5}*(N) Incepator Nivel 1 - %s[%d]:{FFFFFF} %s",sendername, result);

                if(PlayerInfo[playerid][pLevel] == 2)

                format(string, sizeof(string), "{7F90E5}*(N) Incepator Nivel 2 - %s[%d]:{FFFFFF} %s",sendername, result);

                if(PlayerInfo[playerid][pLevel] == 3)

                format(string, sizeof(string), "{7F90E5}*(N) Incepator Nivel 3 - %s[%d]:{FFFFFF} %s",sendername, result);

                if(PlayerInfo[playerid][pAdmin] == 1)

                format(string, sizeof(string), "{7F90E5}*(N) Administrator Nivel 1 - %s[%d]:{FFFFFF} %s",sendername, result);

                if(PlayerInfo[playerid][pAdmin] == 2)

                format(string, sizeof(string), "{7F90E5}*(N) Administrator Nivel 2 - %s[%d]:{FFFFFF} %s",sendername, result);

    }

    return 1;

    }

    if(strcmp(cmd, "/non", true) == 0)

    {

        if(IsPlayerConnected(playerid))

        {

    if (PlayerInfo[playerid][pAdmin] >= 7 && (!noooc))

    {

    noooc = 1;

    BroadCast(COLOR_GRAD2, "  Newbie chat channel disabled by an Admin !");

    }

    else if (PlayerInfo[playerid][pAdmin] >= 2 && (noooc))

    {

    noooc = 0;

    BroadCast(COLOR_GRAD2, "  Newbie chat channel enabled by an Admin !");

    }

    else

    {

    SendClientMessage(playerid, COLOR_GRAD1, "  you are not authorized to use that command!");

    }

    }

    return 1;

    }[/pawn]

  3. am adaugat si cateva garaje in plus,dar nu vor sa se deschida ..DC?

    Deoarece acestea se pot deschide doar daca pui o comanda in Gamemodn .

    http://forum.sa-mp.com/showthread.php?t=302773

    cum trebuie sa fac ca obiectele sterse sa ramana sterse si pe gamemode nu doar pe MTA (adica cum ai        sterge un stalp sau o casa ..cum sa fac sa ramana stersa si pe samp?)

    Ai in pawno o linie de genul RemoveBuilding ?

    Culoarea la masina se defineste prin ultimele 2 cifre de exp:

    [pawn]AddStaticVehicle(433,2150.5164,-2661.9878,13.9834,304.4830,43,0)[/pawn]

    43 si 0 = Culorile .

  4. Inlocuieste:

    [pawn]public OnRecordingPlaybackEnd() StartRecordingPlayback(onfool,rec);[/pawn]

    cu

    [pawn]public OnRecordingPlaybackEnd() StartRecordingPlayback(onfoot,rec);[/pawn]

  5. Ia incearca sa bagi asta :

    [pawn]cmd(report, playerid, params[])

    {

      new infractor, reason[128];

      if(sscanf(params, "us", infractor, reason)) return SendClientMessage(playerid, GRAY, "Scrie: /report [nume/ID jucator] [motiv]");

      if(infractor != INVALID_PLAYER_ID)

      {

        new namer[48], string[128];

        GetPlayerName(playerid, namer, sizeof(namer));

        format(string, sizeof string, "Raportare jucator: %d Motiv: %s Raport trimis de %s", infractor, reason, namer);

        SendMessageToAdmins(WHITE, "|_____________________Raport_____________________|");

        SendMessageToAdmins(GREEN, string);

        SendMessageToAdmins(WHITE, "|________________________________________________|");

        SendClientMessage(playerid, GREEN, "Multumim!Raportul a fost trimis catre toti Administratorii online!");

      } else SendClientMessage(playerid, RED, "Nu este nici un jucator conectat cu acest nume!");

      return 1;

    }[/pawn]

  6. Salutare :) . Am si eu un gamemod si imi da 3 erori la pawno ( Warnings ) . Desi se poate compila parerea mea este ca e mai bine fara niciun warning :) . Mai jos aveti eroarea .. daca ma poate ajuta cineva !?

          Multumesc anticipat !

    [pawn]C:\Documents and Settings\Stefan\Desktop\\GM\XX@\gamemodes\PG3.pwn(62) : warning 201: redefinition of constant/macro (symbol "COLOR_RED")

    C:\Documents and Settings\Stefan\Desktop\GM\XX@\gamemodes\PG3.pwn(49908) : warning 209: function "CustomPickups" should return a value

    C:\Documents and Settings\Stefan\Desktop\GM\XX@\gamemodes\PG3.pwn(54097) : warning 203: symbol is never used: "gCopPlayerSpawns"[/pawn]

  7. Nu are niciun virus ! Eu sunt cRz. si daca tu crezi ca este ca la nunta dute ma si fati tu GM-ul tau! Stai tu si lucreaza atatea ore cat am lucrat eu la acest GM cu Mitza ;)! Daca mai comenteaza vreunu gen "Virusi , GF-EDIT , E de fetite" o sa il scoatem depe sa-mp.ro :).

  8. Buna ziua/seara. Am si eu o problema. Vreau sa modific sistemul de login/register de la GM-ul meu de la cel vechi cu /register si /login la unul nou ( Casuta ptr. register/login ) . Il schimb , totul bine fara nici o eroare in pawno dar cand intru pe server imi apare aceasta casuta dar dupa ce ma inregistrez imi apare sa selectez skinul . Ma puteti ajuta?

  9. Buna ziua/seara. Am si eu o problema. Vreau sa modific sistemul de login/register de la GM-ul meu de la cel vechi cu /register si /login la unul nou ( Casuta ptr. register/login ) . Il schimb , totul bine fara nici o eroare in pawno dar cand intru pe server imi apare aceasta casuta dar dupa ce ma inregistrez imi apare sa selectez skinul . Ma puteti ajuta?

×
×
  • 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.