Thread: wuts wrong?

Results 1 to 10 of 10
  1. #1 wuts wrong? 
    ZRPS
    Guest
    public void spawnmusic() {
    if (isInWilderness(absX, absY, 1)
    frame74(169);
    }
    if (isInAssault()) {
    frame74(7);
    }
    if (isInApe()){
    frame74(15);
    }
    if (isInPitRoom() || isInPitGame()) {
    frame74(123);
    }
    Give sme 100 errors.. idk why..
     

  2. #2  
    SERGEANT OF THE MASTER SERGEANTS MOST IMPORTANT PERSON OF EXTREME SERGEANTS TO THE MAX!

    cube's Avatar
    Join Date
    Jun 2007
    Posts
    8,871
    Thanks given
    1,854
    Thanks received
    4,745
    Rep Power
    5000
    Code:
    public void spawnmusic() {
    	if (isInWilderness(absX, absY, 1)
    		frame74(169);
    	}
    	if (isInAssault()) {
    		frame74(7);
    	}
    	if (isInApe()){
    		frame74(15);
    	}
    	if (isInPitRoom() || isInPitGame()) {
    		frame74(123);
    	}
    }

    Attached image

     

  3. #3  
    Registered Member

    Join Date
    Jun 2007
    Age
    29
    Posts
    3,003
    Thanks given
    52
    Thanks received
    98
    Rep Power
    3208
    If you don't understand what square pasted, add another bracket at the bottom
     

  4. #4  
    ZRPS
    Guest
    oh shet rofl, i did

    }
    {


    Wuahaha sorry thanks for help guys!
     

  5. #5  
    ZRPS
    Guest
    NVM still 100 errors rofl..
     

  6. #6  
    Banned

    Join Date
    Oct 2006
    Age
    30
    Posts
    3,154
    Thanks given
    310
    Thanks received
    259
    Rep Power
    0
    Bracket in wrong area, you might want to post the full snippet, your missing the }.
    Hint* When you open a bracket you always have to close it.
     

  7. #7  
    Registered Member

    Join Date
    Sep 2008
    Posts
    227
    Thanks given
    6
    Thanks received
    15
    Rep Power
    91
    Quote Originally Posted by S Quare Quxx View Post
    Code:
    public void spawnmusic() {
    	if (isInWilderness(absX, absY, 1)
    		frame74(169);
    	}
    	if (isInAssault()) {
    		frame74(7);
    	}
    	if (isInApe()){
    		frame74(15);
    	}
    	if (isInPitRoom() || isInPitGame()) {
    		frame74(123);
    	}
    fool, you missed one

    Code:
    public void spawnmusic() {
    	if (isInWilderness(absX, absY, 1) {
    		frame74(169);
    	}
    	if (isInAssault()) {
    		frame74(7);
    	}
    	if (isInApe()){
    		frame74(15);
    	}
    	if (isInPitRoom() || isInPitGame()) {
    		frame74(123);
    	}
    }
    Quote Originally Posted by d0uwontawank View Post
    What about the botnets crossing the atlantic
     

  8. #8  
    SERGEANT OF THE MASTER SERGEANTS MOST IMPORTANT PERSON OF EXTREME SERGEANTS TO THE MAX!

    cube's Avatar
    Join Date
    Jun 2007
    Posts
    8,871
    Thanks given
    1,854
    Thanks received
    4,745
    Rep Power
    5000
    Oh crap didn't see that one

    Attached image

     

  9. #9  
    ZRPS
    Guest
    Oh btw, feel free to leech this, i also made the command for it in snippets, and ofcourse added the frame74(songid) void
     

  10. #10  
    Hi.

    'Mystic Flow's Avatar
    Join Date
    Nov 2007
    Posts
    7,146
    Thanks given
    256
    Thanks received
    1,252
    Rep Power
    3714
    This is how it's supposed to be done..

    public void spawnmusic() {
    if (isInWilderness(absX, absY, 1) {
    frame74(169);
    }
    if (isInAssault()) {
    frame74(7);
    }
    if (isInApe()){
    frame74(15);
    }
    if (isInPitRoom() || isInPitGame()) {
    frame74(123);
    }
    }
    Tell me if you still get the errors.

    Edit: Nvm, didn't see that you fixed it , closed.



     


Thread Information
Users Browsing this Thread

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


User Tag List

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