Thread: finding doors
View Single Post
  #2  
Old 10-10-2009, 11:36 AM
So_1337
Dragon
 
Join Date: May 2006
Location: Cincinnati, OH
Posts: 689
Default

Yes.

Add a player.pl file to the zone you're working with and put this code into it:

Code:
sub EVENT_CLICKDOOR {
     $door = $doorid - 256;
     $client->Message(13, "This is door number $door.");
}
Then clicking the doors will show you the proper ID.
Reply With Quote