Error 26 ProxDetector
#1

Hello

I get 26 errors which pop us from these lines
pawn Код:
stock GiftPlayer(playerid, giveplayerid) // playerid = Gifter.  giveplayerid = gift receiver
{
    new string[128];
    if(PlayerInfo[playerid][pAdmin] >= 2 || playerid == MAX_PLAYERS)
    {
        new randgift = Random(1, 100);
        if(randgift >= 1 && randgift <= 83)
        {
            new gift = Random(1, 11);
            if(gift == 1)
            {
                if(PlayerInfo[giveplayerid][pConnectTime] < 0 || PlayerInfo[giveplayerid][pWRestricted] > 0) return GiftPlayer(playerid, giveplayerid);
                GivePlayerValidWeapon(giveplayerid, 27, 60000);
                GivePlayerValidWeapon(giveplayerid, 24, 60000);
                GivePlayerValidWeapon(giveplayerid, 31, 60000);
                GivePlayerValidWeapon(giveplayerid, 34, 60000);
                GivePlayerValidWeapon(giveplayerid, 29, 60000);
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won a full weapon set!");
                format(string, sizeof(string), "* %s was just gifted a full weapon set, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 2)
            {
                PlayerInfo[giveplayerid][pFirstaid]++;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won a first aid kit!");
                format(string, sizeof(string), "* %s was just gifted a first aid kit, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 3)
            {
                PlayerInfo[giveplayerid][pMats] += 2000;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 2,000 materials!");
                format(string, sizeof(string), "* %s was just gifted 2,000 materials, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 4)
            {
                if(PlayerInfo[giveplayerid][pWarns] != 0)
                {
                    PlayerInfo[giveplayerid][pWarns]--;
                    SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won a single warning removal!");
                    format(string, sizeof(string), "* %s was just gifted a single warning removal, enjoy!", GetPlayerNameEx(giveplayerid));
                    ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
                }
                else
                {
                    SendClientMessageEx(playerid, COLOR_GRAD2, "Random gift ended up in a removal of one warning - let's try again!");
                    GiftPlayer(playerid, giveplayerid);
                    return 1;
                }
            }
            else if(gift == 5)
            {
                PlayerInfo[giveplayerid][pPot] += 50;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 50 grams of pot!");
                format(string, sizeof(string), "* %s was just gifted 50 grams of pot, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 6)
            {
                PlayerInfo[giveplayerid][pCrack] += 25;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 25 grams of crack!");
                format(string, sizeof(string), "* %s was just gifted 25 grams of crack, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 7)
            {
                GivePlayerCash(giveplayerid, 20000);
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won $20,000!");
                format(string, sizeof(string), "* %s was just gifted $20,000, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 8)
            {
                PlayerInfo[giveplayerid][pPaintTokens] += 10;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 10 paintball tokens!");
                format(string, sizeof(string), "* %s was just gifted 10 paintball tokens, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 9)
            {
                PlayerInfo[giveplayerid][pCookies] += 5;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 5 Cookies!");
                format(string, sizeof(string), "* %s was just gifted 5 Cookies, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            /*else if(gift == 10)
            {
                PlayerInfo[giveplayerid][pNeonTokens] += 1;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 1 Neon Token!");
                format(string, sizeof(string), "* %s was just gifted 1 Neon Token, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }*/

  }
        else if(randgift > 83 && randgift <= 98)
        {
            new gift = Random(1, 8);
            if(gift == 1)
            {
                GivePlayerCash(giveplayerid, 150000);
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won $150,000!");
                format(string, sizeof(string), "* %s was just gifted $150,000, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 2)
            {
                PlayerInfo[giveplayerid][pMats] += 15000;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 15,000 materials!");
                format(string, sizeof(string), "* %s was just gifted 15,000 materials, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 3)
            {
                PlayerInfo[giveplayerid][pExp] += 10;
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 10 respect points!");
                format(string, sizeof(string), "* %s was just gifted 10 respect points, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 4)
            {
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won a free car!");
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Note: This rare reward may take up to 48 hours to be rewarded, contact Shop Techs.");
                format(PlayerInfo[giveplayerid][pFlag], 128, "Free Car (Gift)");
                format(string, sizeof(string), "{AA3333}AdmWarning{FFFF00}: %s has just gifted %s and he won a free car.", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
                ABroadCast(COLOR_YELLOW, string, 4);
                new year,month,day,log[128];
                getdate(year, month, day);
                format(log, sizeof(log), "AdmCmd: %s has just gifted %s and he won a free car(%d-%d-%d)", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid), month, day, year);
                Log("logs/gifts.log", log);
                format(string, sizeof(string), "* %s was just gifted a free car, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 5)
            {
                if(PlayerInfo[giveplayerid][pDonateRank] > 0)
                {
                    PlayerInfo[giveplayerid][pTokens] += 10;
                    SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 10 VIP tokens!");
                    format(string, sizeof(string), "* %s was just gifted 10 VIP tokens, enjoy!", GetPlayerNameEx(giveplayerid));
                    ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
                }
                else
                {
                    PlayerInfo[giveplayerid][pDonateRank] = 1;
                    PlayerInfo[giveplayerid][pTempVIP] = 10800;
                    PlayerInfo[giveplayerid][pBuddyInvited] = 1;
                    format(string, sizeof(string), "You have been invited to become a Level 1 VIP for 3 hours. Enjoy!", GetPlayerNameEx(giveplayerid));
                    SendClientMessageEx(giveplayerid, COLOR_LIGHTBLUE, string);
                    format(string, sizeof(string), "BUDDY INVITE: %s has won a buddyinvite.", GetPlayerNameEx(giveplayerid));
                    Log("logs/setvip.log", string);
                    format(string, sizeof(string), "* %s was just gifted 3 hours of VIP, enjoy!", GetPlayerNameEx(giveplayerid));
                    ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
                }
            }
            else if(gift == 6)
            {
                    PlayerInfo[giveplayerid][pCookies] += 5;
                    SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 5 Cookies!");
                    format(string, sizeof(string), "* %s was just gifted 5 Cookies, enjoy!", GetPlayerNameEx(giveplayerid));
                    ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            /*else if(gift == 7)
            {
                    PlayerInfo[giveplayerid][pNeonTokens] += 1;
                    SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won 1 Neon Token!");
                    format(string, sizeof(string), "* %s was just gifted 1 Neon Token, enjoy!", GetPlayerNameEx(giveplayerid));
                    ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }*/

        }
        else if(randgift > 98 && randgift <= 100)
        {
            new gift = Random(1, 5);
            if(gift == 1 && PlayerInfo[giveplayerid][pDonateRank] <= 2) // Silver VIP can get it extended, I suppose
            {
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won one month of Silver VIP!");
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Note: This rare reward may take up to 48 hours to be rewarded.");
                format(PlayerInfo[giveplayerid][pFlag], 128, "Free Silver VIP (Gift)");
                format(string, sizeof(string), "{AA3333}AdmWarning{FFFF00}: %s has just gifted %s and he won one month of Silver VIP.", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
                ABroadCast(COLOR_YELLOW, string, 2);
                new year,month,day,log[128];
                getdate(year, month, day);
                format(log, sizeof(log), "AdmCmd: %s has just gifted %s and he won one month of Silver VIP(%d-%d-%d)", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid), month, day, year);
                Log("logs/gifts.log", log);
                format(string, sizeof(string), "* %s was just gifted one month of Silver VIP, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 2)
            {
                new year,month,day,log[128];
                getdate(year, month, day);
                format(log, sizeof(log), "AdmCmd: %s has just gifted %s and he won a free house(%d-%d-%d)", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid), month, day, year);
                Log("logs/gifts.log", log);
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won a free house!");
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Note: This rare reward may take up to 48 hours to be rewarded.");
                format(PlayerInfo[giveplayerid][pFlag], 128, "Free House (Gift)");
                format(string, sizeof(string), "{AA3333}AdmWarning{FFFF00}: %s has just gifted %s and he won a free house.", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
                ABroadCast(COLOR_YELLOW, string, 2);
                format(string, sizeof(string), "* %s was just gifted a free house, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
            else if(gift == 3)
            {
                new year,month,day,log[128];
                getdate(year, month, day);
                format(log, sizeof(log), "AdmCmd: %s has just gifted %s and he won $500,000. (%d-%d-%d)", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid), month, day, year);
                Log("logs/gifts.log", log);
                GivePlayerCash(giveplayerid, 500000);
                SendClientMessageEx(giveplayerid, COLOR_GRAD2, " Congratulations - you have won $500,000!");
                format(string, sizeof(string), "{AA3333}AdmWarning{FFFF00}: %s has just gifted %s and he won $500,000.", GetPlayerNameEx(playerid), GetPlayerNameEx(giveplayerid));
                ABroadCast(COLOR_YELLOW, string, 2);
                format(string, sizeof(string), "* %s was just gifted $500,000, enjoy!", GetPlayerNameEx(giveplayerid));
                ProxDetector(30.0, giveplayerid, string, COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW,COLOR_YELLOW);
            }
        }
        PlayerInfo[giveplayerid][pGiftTime] = 300;
    }
 }
    return 1;
}
Errprs
pawn Код:
C:\Users\Bhupesh-PC\Desktop\pawno\include\removebuilding_fix.inc(72) : error 017: undefined symbol "RemoveBuildingForPlayer"
C:\Users\Bhupesh-PC\LSRP.pwn(3683) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3690) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3697) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3706) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3720) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3727) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3731) : error 017: undefined symbol "GivePlayerCash"
C:\Users\Bhupesh-PC\LSRP.pwn(3734) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3741) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3748) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3763) : error 017: undefined symbol "GivePlayerCash"
C:\Users\Bhupesh-PC\LSRP.pwn(3766) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3773) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3780) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3788) : error 017: undefined symbol "ABroadCast"
C:\Users\Bhupesh-PC\LSRP.pwn(3792) : error 017: undefined symbol "Log"
C:\Users\Bhupesh-PC\LSRP.pwn(3794) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3803) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3813) : error 017: undefined symbol "Log"
C:\Users\Bhupesh-PC\LSRP.pwn(3815) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3823) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3842) : error 017: undefined symbol "ABroadCast"
C:\Users\Bhupesh-PC\LSRP.pwn(3846) : error 017: undefined symbol "Log"
C:\Users\Bhupesh-PC\LSRP.pwn(3848) : error 017: undefined symbol "ProxDetector"
C:\Users\Bhupesh-PC\LSRP.pwn(3855) : error 017: undefined symbol "Log"

Compilation aborted.Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


26 Errors.
Can anyone fix pleae
Reply


Messages In This Thread
Error 26 ProxDetector - by RaoAbhi - 02.10.2012, 03:00
Re: Error 26 ProxDetector - by SwisherSweet - 02.10.2012, 03:35
Re: Error 26 ProxDetector - by RaoAbhi - 02.10.2012, 03:45
Re: Error 26 ProxDetector - by Gamer` - 02.10.2012, 04:02
Re: Error 26 ProxDetector - by RaoAbhi - 02.10.2012, 04:04
Re: Error 26 ProxDetector - by Gamer` - 02.10.2012, 04:14
Re: Error 26 ProxDetector - by RaoAbhi - 02.10.2012, 04:29

Forum Jump:


Users browsing this thread: 1 Guest(s)