Full Version : Question On Treasure Tokuno
xmlspawner >>Scripting Support >>Question On Treasure Tokuno


<< Prev | Next >>

Erica- 02-25-2008
I am curious what about if your running ML do you have to change the SE To ML this line.
CODE
private static bool m_Enabled = (Core.Expansion == Expansion.SE);
cause most my players got version ML and they complain about not getting anything.
Oh and please correct me if im right or wrong cause im just wondering if server is running ML client and the Above says Expansion.SE will you still get those treasure or do i have to change that to ML . And what about the ones that are running SE to so i'm not sure.

ArteGordon- 02-25-2008
if you want ToT to drop even with ML, I would change it to this
CODE

private static bool m_Enabled = (Core.Expansion >= Expansion.SE);

that way it will apply with either the SE or the ML expansion.

Erica- 02-25-2008
QUOTE (ArteGordon @ February 25, 2008 02:41 pm)
if you want ToT to drop even with ML, I would change it to this
CODE

private static bool m_Enabled = (Core.Expansion >= Expansion.SE);

that way it will apply with either the SE or the ML expansion.

Oh ok Thanks ArteGordon.

Hanse46- 04-08-2008
Where is this found at please.

Greystar- 04-08-2008
QUOTE (Hanse46 @ April 08, 2008 09:52 pm)
Where is this found at please.

Probably in the Treasures of Tokuno area of the scripts.

Hanse46- 04-09-2008
Thank you Greystar, I found it.