Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > Code Gallery
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #10  
Old 08-26-2011, 11:55 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by fowlplay4 View Post
Don't do what you did:

PHP Code:
if (statement) if (otherstatement) {


Either do:

PHP Code:
if (statement) {
  if (
otherstatement) {

  }

or even (I prefer using two ifs though):

PHP Code:
if (statement && otherstatement) {


The above two are much more readable and will be easier to modify in the future. When you modify the code.

Also:

PHP Code:
function ChatBar.onAction() {  
  if (
ChatBar.text.trim() == "/flagadder") {  
    
OpenGui(); //Opens the GUI.
    
ChatBar.text ""// Clear the chatbar so /flagadder isn't chatted out loud.
  
}  

Oops that was an error. Fixed now.
__________________
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 08:25 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.