Thread: Withdraw as note button will turn on but not off

Results 1 to 4 of 4
  1. #1 Withdraw as note button will turn on but not off 
    Get On My Level

    ItsGoml's Avatar
    Join Date
    Dec 2010
    Posts
    643
    Thanks given
    11
    Thanks received
    79
    Rep Power
    391
    Hi i need help with a bank issue.
    Base: PI [DSPK]

    Right now my client is on the newest runescape interface and as you know there is only 1 button in the bank to turn on and off the withdrawl of noted items. The problem is that you can turn the button on but not turn it off. Here is what i got:
    Code:
    			case 82016:
    			c.takeAsNote = true;
    			break;
    Reply With Quote  
     

  2. #2  
    Get On My Level

    ItsGoml's Avatar
    Join Date
    Dec 2010
    Posts
    643
    Thanks given
    11
    Thanks received
    79
    Rep Power
    391
    nvm i did it, heres the code i used if it can help anyone:
    Code:
    			case button id here:
    			c.takeAsNote = !c.takeAsNote;
    			break;
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Feb 2010
    Posts
    63
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    Code:
    case 82016:
    				if (c.takeAsNote == true) {
    					c.takeAsNote = false;
    				} else {
    					c.takeAsNote = true;
    				}
    			break;
    Try that, that is what i use
    Reply With Quote  
     

  4. #4  
    Get On My Level

    ItsGoml's Avatar
    Join Date
    Dec 2010
    Posts
    643
    Thanks given
    11
    Thanks received
    79
    Rep Power
    391
    Quote Originally Posted by EliteScapePVP View Post
    Code:
    case 82016:
    				if (c.takeAsNote == true) {
    					c.takeAsNote = false;
    				} else {
    					c.takeAsNote = true;
    				}
    			break;
    Try that, that is what i use
    its fine as u can see i fixed it with less line of code.
    Reply With Quote  
     


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. Simply Button v2: Super Cool-Sexy Button for Your Website
    By JavaScriptBank in forum Website Development
    Replies: 0
    Last Post: 09-15-2010, 09:48 AM
  2. Replies: 6
    Last Post: 07-26-2009, 05:42 PM
  3. Replies: 5
    Last Post: 04-24-2009, 08:42 PM
  4. Banking[no note withdraw, coming soon!]
    By west7man in forum Tutorials
    Replies: 17
    Last Post: 06-20-2008, 02:15 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
  •