Quote:
Originally Posted by Gambet
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;
