Hey i thought i'd make a Tutorial for a; just say you want to create a icon where you walk into it and it shows you a command to teleport somewhere [example]

Well Here goes

Somewhere above main()
Code:
new stuntpark;

OnGameModInit:
PAWN Code:
Code:
stuntpark=CreatePickup(1239, 19, x, y, z);
^^Edit that info with your own. X, y, z is where the icon will be.
Pickups and icons: http://wiki.sa-mp.com/wiki/Object_in...kups_and_Icons
Pickup types: http://forum.sa-mp.com/index.php?top...sg1582#msg1582


PAWN Code:
Code:
public OnPlayerPickUpPickup(playerid, pickupid)
{
if ( pickupid == stuntpark )
{
GameTextForPlayer(playerid,"~r~Use /stuntpark to go to the stuntpark", 6000, 1);
}
return 1;
}

PAWN Code:
Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/stuntpark", true)==0)
{
SendClientMessage(playerid,0xFF0000FF,"You are now in the Stunt Park");
SetPlayerInterior(playerid, 14);
SetPlayerPos(playerid,-1485.6780,1619.5634,1052.5313);
return 1;
}
return 0;
}
Hope This was a good Tutorial

Seen as its my first Please don't say it was shit