08.09.2013, 13:56
Before:
Add:
About the COLOR_GREEN, you need to define it.
Go at the top, under includes, defines etc..
and add:
pawn Код:
GetPlayerPos(playerid, x, y, z);
pawn Код:
new Float: x, Float: y, Float: z;
// we now declared the variables x, y, z so we can use them later.
GetPlayerPos(playerid, x, y, z); // then this line..
Go at the top, under includes, defines etc..
and add:
pawn Код:
#include <a_samp>
// some other includes and defines
#define COLOR_GREEN 0x00FF00FF
// callbacks here: public blabla..