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.