nedd help in here

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
255
♫♪♫ ♦♥♠♣ ♀♂♀
This is an example for a exp pot giving 10k

in the tbl_stditems add a new item called ExpPots(S)
FLD_STDMode = 31
FLD_SHAPE = 0
FLD_WEIGHT = 1 or whatever u prefer
FLD_Anicount = 30 or a number which we will have to remember
set all the other fields to 0 or something that you prefer
FLD_IMGINDEX = to a number showing a pot.. copy the same value of a already existing pot that you like

Now to complete it we need to go into C:\Mirserver\M2Server\Envir\Market_Def and open QFunction-0.txt
we will have to enter the following code to make one working exp item:

Code:

[@StdModeFunc30] ; i have put stdmodefunc30 because of the anicount = 30 above
#act
CHANGEEXP + 10000
LineMSG 6 "Exp has increased of 10k"
BREAK


if you want this pot also to act as a pot you can think of using
HUMANHP or HUMANMP like this:

[@StdModeFunc30]
#act
CHANGEEXP + 10000
HUMANHP + 250
HUMANMP + 80
LineMSG 6 "Exp has increased of 10k"
BREAK
 
Upvote 0