15.12.2012, 09:37
Hey
i wanna
Compile this :
And this
To one
i wanna
Compile this :
Quote:
#include <a_samp> #define FILTERSCRIPT #define COLOR_LIGHTBLUE 0x33CCFFAA new p1; public OnFilterScriptInit() { p1 = CreatePickup(1318, 1, -1999.9729,80.0172,27.6799);// model,type,z,x,y return 1; } public OnPlayerPickUpPickup(playerid, pickupid)//pickup related function { if(pickupid == p1)//this to make sure that the pickup we want is marker { SendClientMessage(playerid, COLOR_LIGHTBLUE, "* Informacija Uюdarbis 10LT/Min Paskirtis: Pjauti юole"); } return 1; } |
And this
Quote:
#include <a_samp> #define FILTERSCRIPT #define COLOR_LIGHTBLUE 0x33CCFFAA new p2; public OnFilterScriptInit() { p2 = CreatePickup(1318, 1, -2326.9583,-140.2599,35.5547);// model,type,z,x,y return 1; } public OnPlayerPickUpPickup(playerid, pickupid)//pickup related function { if(pickupid == p2)//this to make sure that the pickup we want is marker { SendClientMessage(playerid, COLOR_LIGHTBLUE, "* Informacija Uюdarbis 12LT/Min Paskirtis: Iрveюioti picas"); } return 1; } |