Quote:
Originally Posted by Gambet
Just make a master control system that sets lighteffects based on the levels you are in or so (a wNPC).
If you're on the map, then you'd do:
PHP Code:
if (isonmap)
{
//seteffect here
}
else if (startswith(whatever_cave.gmap,#L))
{
//seteffect here
}
etc...
|
there would be alot of "else if's"...