Help me please !! REP++
#1

Hiii
Can somebody tell me how to fix proxdetector error ??

pawn Код:
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2508) : error 017: undefined symbol "GetPlayerNameEx"
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2510) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2549) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2556) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2781) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2790) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2913) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(2923) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3102) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3114) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3126) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3144) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3156) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3168) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3543) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3563) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3583) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3603) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3623) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3899) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3908) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3919) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3927) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3936) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3945) : error 004: function "ProxDetector" is not implemented
F:\Users\Daniel\Desktop\GamingClub RolepLay\gamemodes\DreamWorld.pwn(3954) : error 004: function "ProxDetector" is not implemented
Reply
#2

At the top of the script:

pawn Код:
forward ProxDetector();
// if that doesn't work
#include <theincludenamethatusesProxDetectorHERE>
Reply
#3

Quote:
Originally Posted by SomebodyAndMe
Посмотреть сообщение
At the top of the script:

pawn Код:
forward ProxDetector();
// if that doesn't work
#include <theincludenamethatusesProxDetectorHERE>
But i dont now the name
Reply
#4

hmm

try this for GetPlayerNameEx error
pawn Код:
stock GetPlayerNameEx(playerid)
{
      new name[MAX_PLAYER_NAME];
   GetPlayerName(playerid,name,sizeof(name));
      return name;
}
Prox Detector
pawn Код:
forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);

//==============================================================================

public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)

{

    if(IsPlayerConnected(playerid))

    {

        new Float:posx, Float:posy, Float:posz;

        new Float:oldposx, Float:oldposy, Float:oldposz;

        new Float:tempposx, Float:tempposy, Float:tempposz;

        GetPlayerPos(playerid, oldposx, oldposy, oldposz);

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

        {

            if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))

            {

                GetPlayerPos(i, posx, posy, posz);

                tempposx = (oldposx -posx);

                tempposy = (oldposy -posy);

                tempposz = (oldposz -posz);

                if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16))) // If the player is within 16 meters

                {

                    SendClientMessage(i, col1, string);

                }

                else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8))) // within 8 meters

                {

                    SendClientMessage(i, col2, string);

                }

                else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4))) //4 meters

                {

                    SendClientMessage(i, col3, string);

                }

                else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2))) //2 meters

                {

                    SendClientMessage(i, col4, string);

                }

                else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi))) //1 meter

                {

                    SendClientMessage(i, col5, string);

                }

            }

            else

            {

                SendClientMessage(i, col1, string);

            }

        }

    }

    return 1;

}
Reply
#5

Quote:
Originally Posted by XStormiest
Посмотреть сообщение
hmm

try this for GetPlayerNameEx error
pawn Код:
stock GetPlayerNameEx(playerid)
{
      new name[MAX_PLAYER_NAME];
   GetPlayerName(playerid,name,sizeof(name));
      return name;
}
Prox Detector
pawn Код:
forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);

//==============================================================================

public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)

{

    if(IsPlayerConnected(playerid))

    {

        new Float:posx, Float:posy, Float:posz;

        new Float:oldposx, Float:oldposy, Float:oldposz;

        new Float:tempposx, Float:tempposy, Float:tempposz;

        GetPlayerPos(playerid, oldposx, oldposy, oldposz);

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

        {

            if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))

            {

                GetPlayerPos(i, posx, posy, posz);

                tempposx = (oldposx -posx);

                tempposy = (oldposy -posy);

                tempposz = (oldposz -posz);

                if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16))) // If the player is within 16 meters

                {

                    SendClientMessage(i, col1, string);

                }

                else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8))) // within 8 meters

                {

                    SendClientMessage(i, col2, string);

                }

                else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4))) //4 meters

                {

                    SendClientMessage(i, col3, string);

                }

                else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2))) //2 meters

                {

                    SendClientMessage(i, col4, string);

                }

                else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi))) //1 meter

                {

                    SendClientMessage(i, col5, string);

                }

            }

            else

            {

                SendClientMessage(i, col1, string);

            }

        }

    }

    return 1;

}
As he said, Try this one it should work.
Reply
#6

Same bro
For the both :S
Reply
#7

try at the end of the script..

for example in this script
pawn Код:
#include <a_samp>
#include <Colors>
#include <zcmd>
#include <dini>

#pragma tabsize 0

//definining the color
#define color COLOR_RED // replace RED with BLUE or your color ;)

#define JoinFile "Join.ini"
#define LeaveFile "Leave.ini"

forward ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5);

//==============================================================================

/*
 me - for creating this script, and for color include
 Zeex for zcmd
 Dracoblue for dini
 sa-mpteam - for all sa-mp functions and callback
*/


/*
This is a simple FIlterscript,  JoinLeaveCreater with this you can create your own JoinLeave message
   Why to create this? : to be honest that was a ideea , but now i don't think so this will be soo usefull,
   Script created by XSTORMIEST
*/


public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print("Free In-Game Converter Online");
    print("--------------------------------------\n");
    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
}

CMD:jlmsg(playerid,params[])
{
        if(!IsPlayerAdmin(playerid) ) return SendClientMessage(playerid,COLOR_RED,"This cmd is only for owner!!");
      else ShowPlayerDialog(playerid,47,DIALOG_STYLE_LIST,"Join  Leave Creator", "Join Message\nLeave Message","Select","Cancel");
     return 1;
}


public OnDialogResponse(playerid,dialogid,response,listitem,inputtext[])
{
       if(dialogid == 47)
       {
               if(!response) return 1;
               if(response)
               {
                   if(listitem  == 0)
                   {
                                ShowPlayerDialog(playerid,56,DIALOG_STYLE_INPUT,"Join Message","Please write the text you want to write.! please use format %s for your text:\nExample: Welcome , %s joined to the server","Create","Cancel");
                   }
                   if(listitem == 1)
                   {
                          ShowPlayerDialog(playerid,57,DIALOG_STYLE_INPUT,"Leave Message","Please write the text you want to write.! please use format %s for your text:\nExample: %s had left the server","Next","Cancel");
                   }
               }
       }
       if(dialogid == 56)
       {
             if(!response) return 1;
             if(response)
             {
                     new name[MAX_PLAYER_NAME], string[256];
                     format(string,sizeof(string), "Add this under OnPlayerConnect(playerid): =>>\r\nnew name[MAX_PLAYER_NAE], string[256];\r\nGetPlayerName(playerid,name,sizef(name));\r\nformat(string,sizeof(string),'%s',name);\r\nSendClientMessage(playerid,color,string); ",inputtext[0],name[0]);

                     new File: file;
                       file = fopen(JoinFile,io_append);
                       if(file)
                       {
                            fwrite(file,string);
                            fclose(file);
                       }
                       SendClientMessage(playerid,COLOR_YELLOW,"File created! check scriptfile at Join.ini");
             }
       }
       if(dialogid == 57)
       {
               new name[MAX_PLAYER_NAME], string[256];
               GetPlayerName(playerid,name,sizeof(name));
               format(string,sizeof(string),"Add this under OnPlayerDisconnect(playerid,reason)\r\nnew name[MAX_PLAYER_NAME],string[256]\r\nGetPlayerName(playerid,name,sizeof(name));\r\nformat(string,sizzeof(string),'%s',name);\r\nSendClientMessage(playerid,color,string);",inputtext[0]);

                  new File: file;
                  file = fopen(LeaveFile,io_append);
                  if(file)
                  {
                        fwrite(file,string);
                        fclose(file);
                  }
                SendClientMessage(playerid,COLOR_YELLOW,"File created! check scriptfile at Leave.ini");
       }
       return 1;
}



public ProxDetector(Float:radi, playerid, string[],col1,col2,col3,col4,col5)

{

    if(IsPlayerConnected(playerid))

    {

        new Float:posx, Float:posy, Float:posz;

        new Float:oldposx, Float:oldposy, Float:oldposz;

        new Float:tempposx, Float:tempposy, Float:tempposz;

        GetPlayerPos(playerid, oldposx, oldposy, oldposz);

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

        {

            if(IsPlayerConnected(i) && (GetPlayerVirtualWorld(playerid) == GetPlayerVirtualWorld(i)))

            {

                GetPlayerPos(i, posx, posy, posz);

                tempposx = (oldposx -posx);

                tempposy = (oldposy -posy);

                tempposz = (oldposz -posz);

                if (((tempposx < radi/16) && (tempposx > -radi/16)) && ((tempposy < radi/16) && (tempposy > -radi/16)) && ((tempposz < radi/16) && (tempposz > -radi/16))) // If the player is within 16 meters

                {

                    SendClientMessage(i, col1, string);

                }

                else if (((tempposx < radi/8) && (tempposx > -radi/8)) && ((tempposy < radi/8) && (tempposy > -radi/8)) && ((tempposz < radi/8) && (tempposz > -radi/8))) // within 8 meters

                {

                    SendClientMessage(i, col2, string);

                }

                else if (((tempposx < radi/4) && (tempposx > -radi/4)) && ((tempposy < radi/4) && (tempposy > -radi/4)) && ((tempposz < radi/4) && (tempposz > -radi/4))) //4 meters

                {

                    SendClientMessage(i, col3, string);

                }

                else if (((tempposx < radi/2) && (tempposx > -radi/2)) && ((tempposy < radi/2) && (tempposy > -radi/2)) && ((tempposz < radi/2) && (tempposz > -radi/2))) //2 meters

                {

                    SendClientMessage(i, col4, string);

                }

                else if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi))) //1 meter

                {

                    SendClientMessage(i, col5, string);

                }

            }

            else

            {

                SendClientMessage(i, col1, string);

            }

        }

    }

    return 1;

}

stock GetPlayerNameEx(playerid)
{
      new name[MAX_PLAYER_NAME];
   GetPlayerName(playerid,name,sizeof(name));
      return name;
}
Reply
#8

Same :S
ohhhhhh
Reply
#9

Sorry for spam but please!! help! i know that you know how to fix it
Reply
#10

any ? :S
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)