SA-MP Forums Archive
Streamer Error - 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)
+--- Thread: Streamer Error (/showthread.php?tid=575019)



Streamer Error - Teemo - 23.05.2015

Quote:

[11:36:25] *** Streamer Plugin: CreateDynamicObject: Expecting 12 parameter(s), but found 11

This error repeats in the server.log like 50000 times, and the server doesn't start..

I updated streamer to the latest verison


Re: Streamer Error - Azula - 23.05.2015

1. Get the latest streamer version (plugins & includes) [Looks like you already have it]
2. Put the streamer.inc inside pawno/include folder.
3. Put the streamer.so (or) streamer.dll inside your plugins folder


Re: Streamer Error - Yashas - 23.05.2015

Update your streamer plugin as well as the include.

EDIT:Azula was faster :P


Re: Streamer Error - Teemo - 23.05.2015

I did so..
Same error


Re: Streamer Error - LMaxCo - 23.05.2015

update your streamer plugins, and re-compile your GM again


Re: Streamer Error - Konstantinos - 23.05.2015

"drawdistance" parameter has been added since v2.7 so you need to specify a value for it and then re-compile your scripts.

pawn Код:
CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 200.0, Float:drawdistance = 0.0);
It's the last parameter. You can also do something like this:
pawn Код:
// 0 and 0.0 are examples, they're supposed to be some values
CreateDynamicObject(0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, .drawdistance = 200.0);



Re: Streamer Error - Teemo - 26.05.2015

Thank yoU!