SA-MP Forums Archive
pawno stops reading from .incs - 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: pawno stops reading from .incs (/showthread.php?tid=77924)



pawno stops reading from .incs - CJ101 - 16.05.2009

The files are there, but it says it cant find. W-T-F.


Re: pawno stops reading from .incs - Correlli - 16.05.2009

Are you sure you have them in the include folder?


Re: pawno stops reading from .incs - CJ101 - 16.05.2009

yea everything s where its supposed to be

i even tried doing

#include <xStreamer.inc>

nothing, it just says cannot read from file 'Xstreamer'


Re: pawno stops reading from .incs - Correlli - 16.05.2009

Do you have more pawn programs installed? Make sure you have these includes in the include folder of the pawn program you're using/compiling.


Re: pawno stops reading from .incs - member - 16.05.2009

Hi cj101,

follow these steps EXACTLY and hopefully it should work.


Quote:
Originally Posted by [B2K
Hustler ]
Try this, it works for others, including me
Quote:
Originally Posted by [B2K
Hustler ]
A lot of people have these problems with includes, including me.
Код:
 fatal error 100: cannot read from file: "includename"
The way I solved this was to:

1) Close Pawno
2) Copy/Move/ or Cut the Include file into the include folder. (\include)
3) Load up Pawno from it's direct source. DO NOT double click on your gamemode/ filterscript file (as most people do).
4) You should see a blank Pawno file open. Now Click on File>Open or type Ctrl+O or press the Open icon.
5) Locate your gamemode/filterscript file and open it.
6) IF you havn't got the include at the top add it
Код:
#include <includename>
7) Compile, it, it Should work.


Hope that Helps cj101.



Re: pawno stops reading from .incs - CJ101 - 16.05.2009

Quote:
Originally Posted by [B2K
Hustler ]
Hi cj101,

follow these steps EXACTLY and hopefully it should work.


Quote:
Originally Posted by [B2K
Hustler ]
Try this, it works for others, including me
Quote:
Originally Posted by [B2K
Hustler ]
A lot of people have these problems with includes, including me.
Код:
 fatal error 100: cannot read from file: "includename"
The way I solved this was to:

1) Close Pawno
2) Copy/Move/ or Cut the Include file into the include folder. (\include)
3) Load up Pawno from it's direct source. DO NOT double click on your gamemode/ filterscript file (as most people do).
4) You should see a blank Pawno file open. Now Click on File>Open or type Ctrl+O or press the Open icon.
5) Locate your gamemode/filterscript file and open it.
6) IF you havn't got the include at the top add it
Код:
#include <includename>
7) Compile, it, it Should work.


Hope that Helps cj101.
thx, it worked