SA-MP Forums Archive
[HeLp] GameMode Compile - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HeLp] GameMode Compile (/showthread.php?tid=209422)



[HeLp] GameMode Compile - Johnny_Ionut - 10.01.2011

Hi ... I Download one gamemode....and not have includes....can help me ? ??

Click "Here" TO see and Download Script Here

||_____________________________________________||

Media Universal


Re: [HeLp] GameMode Compile - [MWR]Blood - 10.01.2011

Download the includes you need?


Re: [HeLp] GameMode Compile - Johnny_Ionut - 10.01.2011

i need includes


Re: [HeLp] GameMode Compile - DarrenThayer - 10.01.2011

Use the search button and download them... Or if that is too advanced for you, tell us what includes you need -.-


Re: [HeLp] GameMode Compile - XoX - 10.01.2011

Simply compile your GM search which inc files are missing enter it in ****** and download it


Re: [HeLp] GameMode Compile - Johnny_Ionut - 10.01.2011

Can GIve Me Includes for This Errors ?

Quote:

D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(11991) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(11991) : error 033: array must be indexed (variable "cmd")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12051) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12051) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12082) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12082) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12177) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12177) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12256) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12256) : error 033: array must be indexed (variable "x_v")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12312) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12312) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12361) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12361) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12382) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12382) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12411) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12411) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12434) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12434) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12516) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12516) : error 033: array must be indexed (variable "tmp")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12736) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12736) : error 033: array must be indexed (variable "x_v")
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12747) : error 017: undefined symbol "strtok"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(12747) : error 033: array must be indexed (variable "tmp")

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


26 Errors.




Re: [HeLp] GameMode Compile - JaTochNietDan - 10.01.2011

You don't need includes for that, you need the strtok function, and like the error says, you need to index tmp and x_v.

Here's the strtok function:

pawn Код:
stock strtok(const string[], &index,seperator=' ')
{
    new length = strlen(string);
    new offset = index;
    new result[128];
    while ((index < length) && (string[index] != seperator) && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }

    result[index - offset] = EOS;
    if ((index < length) && (string[index] == seperator))
    {
        index++;
    }
    return result;
}
If you've downloaded the script though, it should work as intended when you got it, so you're probably missing stuff. Also I see that you're trying to compile it while it's in the temporary rar folder, that won't work properly, you need to extract it first from the archive.


Re: [HeLp] GameMode Compile - Johnny_Ionut - 10.01.2011

I Resolved errors... above and have other errors can help LoL "" ) ""

Quote:

D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18776) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18802) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(1882 : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(1885 : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18884) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18910) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18940) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18966) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(18992) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(19039) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(19115) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(19191) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(19383) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(19424) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(19465) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(2138 : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(22152) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(22304) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(22324) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(28252) : error 017: undefined symbol "CheckPlayerDistanceToVehicle"
D:\DOCUME~1\Jonny\LOCALS~1\Temp\Rar$DI00.500\UNG.p wn(42060) : warning 203: symbol is never used: "GetPointDistanceToPointExMorph"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


20 Errors.




Re: [HeLp] GameMode Compile - Rizard - 10.01.2011

don't compile out of the rar file ... extract it to your 0.3c server folder ... I searched for morphinc.inc and a_sampmysql.inc and found both, put in include folder (in pawno folder) and got it working...