Thread: Custom Gui
View Single Post
  #13  
Old 02-24-2007, 07:14 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by Gambet View Post
Yeah, some of you guys do a lot of pointless stuff when you don't need to since you're working with object-oriented programming.


Instead of doing, example:

PHP Code:
with (findNPC("Blah"))
{
  
player.chat this.test;

You can just do this:

PHP Code:
player.chat Blah.test
The more correct way would be:

PHP Code:
player.chat findNPC("Blah").test
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote