Quote:
Originally Posted by Nizarh
Hi, I\'m facing some trouble.
So I instaled how you said, extract the .pwn and .amx into FilterScript Folder and add "cameraeditor" at FilterScript
none of your command is working.
Do I need any different include? Like ZCMD or sscanf?
|
You have to use the sscanf plugin, and also streamer plugin. I forgot to add them to the tutorial.
EDIT: Installation guide and download link updated!
Quote:
Originally Posted by RxErT
@Flashhie, Salut! good job mate.
But after i\'ve checked into the pwn file, i saw the includes list which is:
PHP Code:
#include <a_samp> #include <YSI\y_iterate> #include <YSI\y_commands> #include <YSI\y_master> #include <streamer> #include <sscanf2> #pragma dynamic 500000
Don\'t you think you have forgotten zcmd.inc? because all your command are being processed by ZCMD.
for example"
PHP Code:
CMD:newcam (playerid, params[])
same parameters as ZCMD\'s one.
So the includes list should be like that:
PHP Code:
#include <a_samp> #include <YSI\y_iterate> #include <YSI\y_commands> #include <YSI\y_master> #include <streamer> #include <sscanf2> #include <zcmd> //Add this
|
I used y_commands for this script, it does the same as zcmd but a little faster.