SA-MP Forums Archive
weird streamer errors??? Help - 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: weird streamer errors??? Help (/showthread.php?tid=385266)



weird streamer errors??? Help - Simplyfrag - 15.10.2012

hi guys i been trying to update my streamer but when i try and update it and compile the gamemode it comes up with this error


streamer.inc(155) : error 017: undefined symbol "OBJECT_MATERIAL_SIZE_256x128"
streamer.inc(375) : warning 235: public function lacks forward declaration (symbol "OnPlayerEditObject")
streamer.inc(397) : warning 235: public function lacks forward declaration (symbol "OnPlayerSelectObject")
streamer.inc(399) : error 017: undefined symbol "SELECT_OBJECT_PLAYER_OBJECT"


Re: weird streamer errors??? Help - SwisherSweet - 15.10.2012

Update the streamer...


Re: weird streamer errors??? Help - 0utLaW_ - 15.10.2012

Quote:
Originally Posted by Aveger
Посмотреть сообщение
Update the streamer...
Streamer has nothing to do with it.
Update you 0.3e include files (like a_http , a_mysql etc, that comes in sa-mp pack when you download) and re-compile the script


Re : weird streamer errors??? Help - yusei - 15.10.2012

Quote:
Originally Posted by Simplyfrag
Посмотреть сообщение
hi guys i been trying to update my streamer but when i try and update it and compile the gamemode it comes up with this error


streamer.inc(155) : error 017: undefined symbol "OBJECT_MATERIAL_SIZE_256x128"
streamer.inc(375) : warning 235: public function lacks forward declaration (symbol "OnPlayerEditObject")
streamer.inc(397) : warning 235: public function lacks forward declaration (symbol "OnPlayerSelectObject")
streamer.inc(399) : error 017: undefined symbol "SELECT_OBJECT_PLAYER_OBJECT"
change your
Код:
#include <streamer>
by :

Код:
#define OBJECT_MATERIAL_SIZE_256x128 128
#define SELECT_OBJECT_PLAYER_OBJECT 10
forward OnPlayerEditObject( playerid, playerobject, objectid, response,
Float:fX, Float:fY, Float:fZ, Float:fRotX, Float:fRotY, Float:fRotZ );
forward OnPlayerSelectObject(playerid, type, objectid, modelid, Float:fX, Float:fY, Float:fZ);
#include <streamer>



Re: weird streamer errors??? Help - Simplyfrag - 15.10.2012

ok thanks guys helpful all of u