Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Money/ Inns/ Trade


lance324
 Share

Recommended Posts

how do i add money to the game so people can buy items and trade?

how do i add a trade app to the game so people can trade?

how do i add inns and hotels to the game so people can rest and heal their life?

how do i add potions so people can heal life by themselves?
Link to comment
Share on other sites

1\. when creating items look for the "Currency" value under type

2\. source i believe

3\. scripting

4\. scripting

The potions are easy
```
if GetPlayerMaxHP(index) > GetPlayerHP(index) then
Call SetPlayerHp(index, GetPlayerHP(index) + Rand(5, 10))
else
Call Playermsg(index, "You already have full health", RED)
end if

```
Put that under scripted item in the main.txt. It will heal 5-10 health everytime a person uses it.
Link to comment
Share on other sites

@lance324:

> how do i add inns and hotels to the game so people can rest and heal their life?
>
> how do i add potions so people can heal life by themselves?

1\. you can make a shop that sells keys to rooms in a building
and once you buy one and open the door the key will dissapear and u will be able to walk in the room
then place healing atributes on the bed and when the player stands on the bed they heal. you dont have to script any of this

2\. its a type of item you can make. when making an item choose potion
Link to comment
Share on other sites

@lance324:

> how do i add money to the game so people can buy items and trade?
>
> how do i add a trade app to the game so people can trade?
>
> how do i add inns and hotels to the game so people can rest and heal their life?
>
> how do i add potions so people can heal life by themselves?

In item editor
/trade Answered by ninja
answered by ninja.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...