Thread: New bank interface noting

Results 1 to 3 of 3
  1. #1 New bank interface noting 
    Before "You" I Serve Nothing Mark's Avatar
    Join Date
    Sep 2010
    Posts
    1,018
    Thanks given
    36
    Thanks received
    87
    Rep Power
    21
    I added the new bank interface now i need to add noting to it
    heres my code
    Code:
    			case 82016:
    			c.takeAsNote = true;
    			} else {
    			c.takeAsNote = false;
    			break;
    			}
    i get errors from it how do i fix em?

    Code:
    src\server\model\players\packets\ClickingButtons.java:38: 'else' without 'if'
                            } else {
                              ^
    src\server\model\players\packets\ClickingButtons.java:42: orphaned case
                            case 82008:
                            ^
    src\server\model\players\packets\ClickingButtons.java:1629: illegal start of typ
    e
                    if (c.isAutoButton(actionButtonId))
                    ^
    src\server\model\players\packets\ClickingButtons.java:1629: <identifier> expecte
    d
                    if (c.isAutoButton(actionButtonId))
                                      ^
    src\server\model\players\packets\ClickingButtons.java:1629: ';' expected
                    if (c.isAutoButton(actionButtonId))
                                       ^
    src\server\model\players\packets\ClickingButtons.java:1629: illegal start of typ
    e
                    if (c.isAutoButton(actionButtonId))
                                                     ^
    src\server\model\players\packets\ClickingButtons.java:1629: <identifier> expecte
    d
                    if (c.isAutoButton(actionButtonId))
                                                      ^
    src\server\model\players\packets\ClickingButtons.java:1629: ';' expected
                    if (c.isAutoButton(actionButtonId))
                                                       ^
    src\server\model\players\packets\ClickingButtons.java:1630: illegal start of typ
    e
                            c.assignAutocast(actionButtonId);
                             ^
    src\server\model\players\packets\ClickingButtons.java:1630: <identifier> expecte
    d
                            c.assignAutocast(actionButtonId);
                                                           ^
    src\server\model\players\packets\ClickingButtons.java:1633: class, interface, or
     enum expected
    }
    ^
    Want professional graphics for a reasonable price? Visit my thread
    Reply With Quote  
     

  2. #2  
    The One And Only

    01053's Avatar
    Join Date
    Apr 2011
    Age
    28
    Posts
    2,887
    Thanks given
    417
    Thanks received
    885
    Rep Power
    856
    Code:
    case 82016:
    			c.takeAsNote = true;
    			} else {
    			c.takeAsNote = false;
                            }
    			break;
    Try that?


    Reply With Quote  
     

  3. #3  
    Extreme Donator

    Jilic-Matt's Avatar
    Join Date
    May 2011
    Age
    29
    Posts
    1,612
    Thanks given
    799
    Thanks received
    494
    Rep Power
    540
    Code:
    case 82016:
    			c.takeAsNote = true;
    			} else {
    			c.takeAsNote = false;
                            }
    			break;
    try this
    Code:
    	case 82016:
    			c.takeAsNote = !c.takeAsNote;
    			break;
    Reply With Quote  
     

  4. Thankful user:



Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [508/525] Bank Noting/Un noting
    By surreal in forum Requests
    Replies: 0
    Last Post: 12-05-2010, 08:27 PM
  2. 100% bank noting
    By zach. in forum Tutorials
    Replies: 72
    Last Post: 09-18-2010, 12:19 AM
  3. Replies: 3
    Last Post: 05-29-2010, 04:48 AM
  4. Replies: 3
    Last Post: 07-18-2009, 02:16 AM
  5. [508] Bank Utils (Noting)
    By Gravediggah in forum Tutorials
    Replies: 7
    Last Post: 03-08-2009, 01:26 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •