View Single Post
  #2  
Old 04-15-2007, 11:52 PM
Gambet Gambet is offline
Registered User
Join Date: Oct 2003
Posts: 2,712
Gambet is on a distinguished road
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...
Reply With Quote