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.
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.
Where is this found at please.
QUOTE (Hanse46 @ April 08, 2008 09:52 pm) |
Where is this found at please. |
Probably in the Treasures of Tokuno area of the scripts.
Thank you Greystar, I found it.