17.12.2010, 20:48
above ur script under #include <a_samp>
type
this will define a path to ur pickup to make it all easyer.
than find "public OnPlayerPickUpPickup"
Put this in there and change it to w/e u want.
EXTRA!
model : http://weedarr.wikidot.com/pickups
spawn type : https://sampwiki.blast.hk/wiki/PickupTypes
How to find the x,y,z :
go in some server or in the samp debugg and go to the place u want to have the pickup.
while there type /save (name) and close it than find ur savedpositions.txt mostly like founded in ur Gta San Andreas User Files in the folder of Sa-Mp
open it and copy the line with has //(urname u put when u /save it ingame)
Example: (0,192.4047,1931.3345,17.6406,89.4637,0,0,0,0,0,0) ; // (urname)
x=192.4047
y=1931.3345
z=17.6406
There we go!
Sorry for my bad english but i am dutch i will post a video soon tough ask for help if needed
type
pawn Code:
new mypickup;
pawn Code:
mypickup = CreatePickup(type, model,x, y, z, viritual world leave at -1; // My pickup
example:
mypickup = CreatePickup(1274, 2, 2291.7900, -1438.1653, 21.3438, -1);
Put this in there and change it to w/e u want.
pawn Code:
{
if(pickupid == mypickup) // Check that the pickup ID of the pickup they picked up is mypickup
{
// It is
SendClientMessage(playerid, 0xFFFFFFFF, "You received $100!"); // Message the player
GivePlayerMoney(playerid, 100); // Give the player the money
return 1;
}
EXTRA!
model : http://weedarr.wikidot.com/pickups
spawn type : https://sampwiki.blast.hk/wiki/PickupTypes
How to find the x,y,z :
go in some server or in the samp debugg and go to the place u want to have the pickup.
while there type /save (name) and close it than find ur savedpositions.txt mostly like founded in ur Gta San Andreas User Files in the folder of Sa-Mp
open it and copy the line with has //(urname u put when u /save it ingame)
Example: (0,192.4047,1931.3345,17.6406,89.4637,0,0,0,0,0,0) ; // (urname)
x=192.4047
y=1931.3345
z=17.6406
There we go!
Sorry for my bad english but i am dutch i will post a video soon tough ask for help if needed