Posts: 285
Threads: 154
Joined: Mar 2016
Reputation:
0
Hi,
Please give my pickup up sound id.
Posts: 547
Threads: 57
Joined: Dec 2010
If you're asking on how to have a pickup play a sound upon entering it, you would do it as follows:
pawn Код:
public OnPlayerPickupPickup(playerid, pickupid)
{
if(pickupid == ExamplePickup)
{
PlayerPlaySound(playerid, soundid); //soundid being the sound id you want to play
//Other functions here
}
return 1;
}
You can browse sound ids by clicking
here. If this isn't what you mean, then I'm not too sure what you're asking.
Posts: 285
Threads: 154
Joined: Mar 2016
Reputation:
0
I need just sound id which contains when you pickup up pickup
Posts: 547
Threads: 57
Joined: Dec 2010