Solved QFunction teleport scroll [Ruby]

Mu online season 21 - grand opening

TheMightyOne

Golden Oldie
Golden Oldie
Jun 14, 2004
722
3
104
UnitedKingdom
Wondered if this was possible with a QFunction command....

I want to make a BichonTeleport scroll usable on a different map that will teleport the user to a desired co-ordinate, is this possible with these files?
 

Sphortex

Dedicated Member
Dedicated Member
Dec 15, 2006
113
0
42
i just want it to be a click able item that all like other servers have had it before
 
Upvote 0

Ardbeg

Legend
Legendary
Aug 8, 2004
3,225
2
150
290
Southern England
i just want it to be a click able item that all like other servers have had it before

Ok, as I said above, you can use the BasicPill which is already hard coded, you just set the exp value to your liking and maybe change its image/name. No need to worry about STDMODE or ANICOUNT.

The other option is to create your own clickable item.
For this you need to set a new item's STDMODE to 31, and all clickable items you create will all need to be 31 too.
Create code to do the task in Qfunction and give it a number, any number not already used, ie. [@StdModeFunc(114)]. Add 114 to the ANICOUNT field of your new item.

I gave you code to allow a player to get the item back if they change their minds. Of course you don't need to do that if you don't want.

Let's assume you have an item correctly created with STDMODE 31 and ANICOUNT 114.
In Qfunction-0.txt, add this code....

Code:
 [@StdModeFunc(114)]
 #ACT
 GIVEEXP 500
 BREAK

That's all you need.
 
Upvote 0