same problem - 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: same problem (
/showthread.php?tid=105574)
same problem -
Sfinx_17 - 30.10.2009
where to put this ?
Код:
public OnRecordingPlaybackEnd() StartRecordingPlayback(RECORDING_TYPE, RECORDING);
i want a example code plz
Re: same problem -
DRIFT_HUNTER - 30.10.2009
i think just put it becos its a PUBLIC xD
Re: same problem -
Nibblet - 30.10.2009
It should be placed in a NPC Script, If you want more info. Make sure to take a look at
"
Tutorial -> Creating a new NPC" by
Kc
Re: same problem -
Sfinx_17 - 31.10.2009
this is a part of my script so where to put the code that was above?
Код:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <a_npc>
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}
#endif