24.07.2010, 12:17
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()
OnGameModInit:
PAWN Code:
^^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:
PAWN Code:
Hope This was a good Tutorial
Seen as its my first Please don't say it was shit
Well Here goes
Somewhere above main()
Code:
new stuntpark;
PAWN Code:
Code:
stuntpark=CreatePickup(1239, 19, x, y, z);
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; }
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; }
Seen as its my first Please don't say it was shit