[Tutorial] Adding a icon for a teleport
#1

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: https://sampwiki.blast.hk/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
Reply


Messages In This Thread
Adding a icon for a teleport - by a!DaN)_)-) - 24.07.2010, 12:17
Re: Adding a icon for a teleport - by Hero_Of_War - 19.08.2010, 20:36
Re: Adding a icon for a teleport - by Hiddos - 19.08.2010, 21:33
Re: Adding a icon for a teleport - by wolvaren1999 - 18.09.2013, 17:36
Re: Adding a icon for a teleport - by Vege - 18.09.2013, 17:54
Re: Adding a icon for a teleport - by BlackbirdXd - 12.02.2017, 19:22

Forum Jump:


Users browsing this thread: 1 Guest(s)