Error with rRace v0.2a by RyDeR
#1

I've included Dini as he said but still error...
Link to his FS here.
Код:
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(50) : error 017: undefined symbol "ret_memcpy"
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(616) : error 017: undefined symbol "isNumeric"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Reply
#2

Add this at the top of the script
pawn Код:
#pragma unused ret_memcpy
And at the bottom of the script
pawn Код:
IsNumeric(const string[])
{
        for (new i = 0, j = strlen(string); i < j; i++)
        {
                if (string[i] > '9' || string[i] < '0') return 0;
        }
        return 1;
}
Reply
#3

Код:
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(49) : error 017: undefined symbol "ret_memcpy"
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(615) : error 017: undefined symbol "IsNumeric"
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(615) : error 029: invalid expression, assumed zero
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(615) : error 017: undefined symbol "string"
C:\Users\Andreas\Desktop\SA-MP Server\filterscripts\rRace.pwn(615) : fatal error 107: too many error messages on one line

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


5 Errors.
EDIT: I got it working now.. atleast no errors..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)