13.02.2017, 00:06
This is because you are defining the include before streamer or you are not directly defining streamer in your gamemode.
Example wrong:
Example correct:
The include compiles correctly ...
Example wrong:
Код:
// ** This send errors #include <a_samp> #include <s_actors> // ** Other code
Код:
#include <a_samp> #include <streamer> #include <s_actors> // ** Other code