SA-MP Forums Archive
[HELP]Run time error 19: "File or function is not found" - 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]Run time error 19: "File or function is not found" (/showthread.php?tid=139187)



[HELP]Run time error 19: "File or function is not found" - [SsC11]MAVERIK - 04.04.2010

I have searched in other topic the solution, but i didn't found it.

i have 1 plugin (it load perfectly)




i have this:

Code:
main()
{
		print("\n----------------------------------");
		print(" Running LVDM ~MoneyGrub\n");
		print("----------------------------------\n");
}
And netframe work correctly installed..

Some one can help me? also using teamviewer


Re: [HELP]Run time error 19: "File or function is not found" - CybeR240 - 04.04.2010

i need this too


Re: [HELP]Run time error 19: "File or function is not found" - [SsC11]MAVERIK - 04.04.2010

i've this:
Code:
#include <a_samp>
#include <core>
#include <float>
#include <streamer>
#include <IsPlayerLAdmin>
#define SERVER_MAX_PLAYERS 50
new enable = 1;
new Text:Textdraw5;
new mypickup;
new treno;
new rhino;
new minig;
new gates[10];
new lift1;
new lift2;
new lift3;
new cbase = 0;
new cbasesw = 0;
new cmave = 0;
new ccyb = 0;
new cseyf = 0;
new gmave = 0;
new gcyb = 0;
new a51 = 0;
new bool:CARJUMP[SERVER_MAX_PLAYERS];
#pragma tabsize 0

#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_WHITE 0xFFFFFFAA
#define PocketMoney 1000 // Amount player recieves on spawn.
#define INACTIVE_PLAYER_ID 255
#define GIVECASH_DELAY 5000 // Time in ms between /givecash commands.
#define NUMVALUES 4
#define PRESSED(%0) \
	(((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))

forward msg1(playerid);
forward MoneyGrubScoreUpdate();
forward Givecashdelaytimer(playerid);
forward SetPlayerRandomSpawn(playerid);
forward SetupPlayerForClassSelection(playerid);
forward GameModeExitFunc();
forward SendPlayerFormattedText(playerid, const str[], define);
forward public SendAllFormattedText(playerid, const str[], define);
forward APERTO_DOPO_10MIN();
forward CHIUSO_DOPO_10MIN();
forward MessaggioSwat(playerid);
forward SendTeamMessage(color, StringCf[]);

new cancello;

//------------------------------------------------------------------------------------------------------

new CashScoreOld;


//Round code stolen from mike's Manhunt :P
//new gRoundTime = 3600000;          // Round time - 1 hour
//new gRoundTime = 1200000;					// Round time - 20 mins
//new gRoundTime = 900000;					// Round time - 15 mins
//new gRoundTime = 600000;					// Round time - 10 mins
//new gRoundTime = 300000;					// Round time - 5 mins
//new gRoundTime = 120000;					// Round time - 2 mins
//new gRoundTime = 60000;					// Round time - 1 min


new gActivePlayers[MAX_PLAYERS];
new gLastGaveCash[MAX_PLAYERS];

//------------------------------------------------------------------------------------------------------

main()
{
		print("\n----------------------------------");
		print(" Running LVDM ~MoneyGrub\n");
		print("----------------------------------\n");
}



Re: [HELP]Run time error 19: "File or function is not found" - [SsC11]MAVERIK - 04.04.2010

sorry for duble post, it's urgent!


Re: [HELP]Run time error 19: "File or function is not found" - Mujib - 04.04.2010

Try to change
Code:
forward public SendAllFormattedText(playerid, const str[], define);
\\\
to
Code:
forward SendAllFormattedText(playerid, const str[], define);



Re: [HELP]Run time error 19: "File or function is not found" - left48 - 04.04.2010

I think you need to compile it with the r7 includes or something, not sure.


Re: [HELP]Run time error 19: "File or function is not found" - [SsC11]MAVERIK - 04.04.2010

Quote:
Originally Posted by Mujib
Try to change
Code:
forward public SendAllFormattedText(playerid, const str[], define);
\\\
to
Code:
forward SendAllFormattedText(playerid, const str[], define);
Nothing..


Re: [HELP]Run time error 19: "File or function is not found" - [SsC11]MAVERIK - 04.04.2010

FIXED LOOK


Re: [HELP]Run time error 19: "File or function is not found" - Fenice - 12.05.2010

How do you fix it?