[Tutorial] Pickup Activated Commands! [[ BASIC TUTORIAL ]]
#1

Pickup Activated Commands
In this basic tutorial, i am going to show you how to make a command that re-fills your health.

Preperations:

1) Go in game and type '/save [pickupid]' in the spot you want the pickup to appear.
2) Find the pickup style(( pickup id )) you want to use. (( You can find them here: http://weedarr.wikidot.com/pickups ))
3) Do you want this pickup to delete upon the person stepping in it, or respawn after some time, or stay when picked up?

Step 1:

In this step you want to create and define the pickup or the script will not compile, and the pickup will not appear ingame.
For this example i am going to create the pickup at the coords: x0, y0, z0 to make it easier on you.
Add this in the top of the script or wherever you keep your defines: new pickupid;
Now that we have defined the pickup, we need to create it.
Add this under 'OnGameModeInit': pickupid = CreatePickup(1274, 23, coordX, coordY, coordZ);

Explanation:

*The '1274' is the pickup's object id:

*The '23' next to the pickup object id, tells the pickup whether or not to delete/respawn or stay when picked up. In this case '23' means to not delete/respawn after pickup, and it will stay there no matter what.

*The 'coordX, coordY, coordZ' is the position of the pickup, and is where it will appear ingame. After you have gone ingame and typed '/save pickupid' you can goto 'My Documents >> Gta SA User Files >> SAMP >> Savedpositions.txt' to find your coords.


Step 2:

In this step we will make it so when you step into the pickup, it re-fills your health.
Ok, if you already completed Step 1, you are ready to proceed, if not, i suggest you read it now, or your pickup will not appear!
Now, you need to make sure you have 'public OnPlayerPickUpPickup(playerid, pickupid)' in your script, if not, add it now!
Now that you have added that you can proceed to making the command:

Add this under 'OnPlayerPickUpPickup;:
Код:
if(pickupid == pickupid)
{
	new Float: Health, HealthI;
	GetPlayerHealth( playerid, Health);
	HealthI = floatround(Health, floatround_ceil);
	if(HealthI != 100)
	{
		SetPlayerHealth( playerid, 100);
		SendClientMessage(playerid,LIGHTGREEN,"You Have Been Healed 100 Percent!");
	}
	else
	{
		SendClientMessage(playerid,ORANGE,"You Already Have Full Health!");
	}
}
Explanation:

*The 'HealthI' is used to grab the players health.
*We use the SendClientMessage function to let the player know the command is working, or there health is too full to refill.
*"if(pickupid == pickupid)" is used to tell the server that you are standing in the pickup, and that it can proceed with the command.
*'SetPlayerHealth' is used to set the players health to the defined amount, you can change 100 to whatever you would like!


At this time, the pickup should appear, and work!

If it doesnt, please let me know in this topic!
Reply
#2

Very nice.
Reply
#3

Quote:
Originally Posted by willsuckformoney
Посмотреть сообщение
Very nice.
Thanks, i tried to make it as simple as possible for people who dont understand scripting. Later ill make an optimized version for more experienced scripters.
Reply
#4

This is quite simple, but overall a good tutorial. I don't like all the bold, but everybody's got their own style - nice work.
Reply
#5

Wow RealCop.... The first comment in a while posting your opinion that won't make people rage
Reply
#6

Its pretty hard to make me mad, heh
Reply
#7

Quote:
Originally Posted by Camacorn
Посмотреть сообщение
Its pretty hard to make me mad, heh
No its not
Reply
#8

Nice tutorial.
Reply
#9

Quote:
Originally Posted by Retardedwolf
Посмотреть сообщение
No its not
Ok, only on some things. But you were just being a dumb*** that day.
Reply
#10

Nice tutorial between I didn't understand this part HealthI = floatround(Health, floatround_ceil);

Edit: nvm I got it. https://sampwiki.blast.hk/wiki/Floatround
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)