Thread: Looking for dupers.

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Looking for dupers. 
    Registered Member shoopdawhoop's Avatar
    Join Date
    Apr 2009
    Posts
    685
    Thanks given
    10
    Thanks received
    19
    Rep Power
    57
    I'm looking for people who are skilled at duping, to dupe on my server.
    You'll get mod/admin if you tell me how to perform 1 dupe that ain't patched.
    PM me if you're interrested.
    if(WomanLocation != Kitchen)
    {
    DivideByZero();
    }
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Dec 2010
    Posts
    1,982
    Thanks given
    174
    Thanks received
    256
    Rep Power
    223
    Pm me Your Webclient link i'll find dupes.

    Da fuck is your signature?

    Statement = !troll;// if yo you are trolling statement = false
    Let's atleast use the Java Languae

    If!c.PlayerIsTrolling = 1;
    c.sendMessage("You trolling son!") {
    }
    Reply With Quote  
     

  3. #3  
    Super Donator

    Benji's Avatar
    Join Date
    Feb 2010
    Age
    29
    Posts
    1,525
    Thanks given
    920
    Thanks received
    503
    Rep Power
    570
    Quote Originally Posted by ViolationX View Post
    Pm me Your Webclient link i'll find dupes.

    Da fuck is your signature?

    Statement = !troll;// if yo you are trolling statement = false
    Let's atleast use the Java Languae
    Code:
    If!c.PlayerIsTrolling = 1;
    c.sendMessage("You trolling son!") {
    }
    Holy shit, your either drunk, high, or have no fucking idea what your talking about.

    First of all, your implying that PlayerIsTrolling is a boolean, you can't fucking cast a boolean into an int like that, do a ternary statement that returns an int value dependent on true/false (c.trollingId = (c.playerIsTrolling) ? 1 : 0;

    Second, you need a bracket after the if statement, its a control flow loop, not a block

    Third, c.sendMessage(string) is a method call, you need a semicolon after every block

    Fourth, what the hell is {} at the end of the sendmessage block?

    Shoopdawhoop's signature is perfectly valid Java, while yours is bullcrap

    Code:
    Statement = !troll;
    if expanded, means

    Code:
    if(troll) {
    	statement = false;
    } else {
    	statement = true;
    }
    I advise you to learn some java before instructing others about "using the Java language"

    Reply With Quote  
     

  4. Thankful users:


  5. #4  
    Banned

    Join Date
    Apr 2011
    Posts
    76
    Thanks given
    15
    Thanks received
    42
    Rep Power
    0
    AP

    Why fucking bother.
    Reply With Quote  
     

  6. #5  
    Super Donator

    Benji's Avatar
    Join Date
    Feb 2010
    Age
    29
    Posts
    1,525
    Thanks given
    920
    Thanks received
    503
    Rep Power
    570
    Quote Originally Posted by NeverQuite View Post
    AP

    Why fucking bother.
    To save shoopdawhoop some time, if you check my friends list, he's been there for over a year

    Reply With Quote  
     

  7. #6  
    Banned

    Join Date
    Apr 2011
    Posts
    76
    Thanks given
    15
    Thanks received
    42
    Rep Power
    0
    Quote Originally Posted by Benjii View Post
    To save shoopdawhoop some time, if you check my friends list, he's been there for over a year
    too much effort for me.
    Reply With Quote  
     

  8. #7  
    Registered Member

    Join Date
    Dec 2010
    Posts
    1,982
    Thanks given
    174
    Thanks received
    256
    Rep Power
    223
    Lol, my bad i'm drinking..

    Tbh i have no clue why i used a } their ;\
    Reply With Quote  
     

  9. #8  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    No I think you did that on purpose when you were trying to show us your pro java skills man!
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  10. #9  
    Extreme Donator


    Join Date
    Jul 2009
    Age
    27
    Posts
    4,351
    Thanks given
    826
    Thanks received
    1,239
    Rep Power
    1781
    Quote Originally Posted by ViolationX View Post
    Pm me Your Webclient link i'll find dupes.

    Da fuck is your signature?

    Statement = !troll;// if yo you are trolling statement = false
    Let's atleast use the Java Languae
    Wow son this is the worst stupidity I have ever seen on this site, you are calling an int(Integer (Java 2 Platform SE 5.0)) in a boolean( Boolean (Java 2 Platform SE v1.4.2)).

    Okay now lets elaborate this:
    Code:
    If!c.PlayerIsTrolling = 1;
    c.sendMessage("You trolling son!") {
    }
    Okay were going to look at:
    Code:
    If!c.PlayerIsTrolling = 1;
    Do you even know java? and the correct java syntax? and you can't cast an int to a boolean, the correct way would be

    Code:
    if(!c.playerIsTrolling) {
    now lets take a look at this;

    Code:
    c.sendMessage("You trolling son!") {
    }
    now what the fuck piece of shit is that? why do you have brackets after send the message , brackets are use for if statements, voids, int methods, boolean methods ect, ect, not calling methods, or variables. You would put a semi-colon after calling the message like so;

    Code:
    c.sendMessage("You trolling son!");
    now lets take a look at what the whole thing would look like

    Code:
    if(!c.playerIsTrolling) {
    	c.sendMessage("You trolling son!");
    }
    if further expanded on;

    Code:
    if(!c.playerIsTrolling) {
    	c.sendMessage("You trolling son!");
    } else {
    	c.sendMessage("You not trolling");
    }
    Reply With Quote  
     

  11. Thankful user:


  12. #10  
    PokeNation! Xaves's Avatar
    Join Date
    Dec 2007
    Age
    32
    Posts
    3,476
    Thanks given
    356
    Thanks received
    788
    Rep Power
    646
    Quote Originally Posted by Mr. Tom View Post
    Wow son this is the worst stupidity I have ever seen on this site, you are calling an int(Integer (Java 2 Platform SE 5.0)) in a boolean( Boolean (Java 2 Platform SE v1.4.2)).

    Okay now lets elaborate this:
    Code:
    If!c.PlayerIsTrolling = 1;
    c.sendMessage("You trolling son!") {
    }
    Okay were going to look at:
    Code:
    If!c.PlayerIsTrolling = 1;
    Do you even know java? and the correct java syntax? and you can't cast an int to a boolean, the correct way would be

    Code:
    if(!c.playerIsTrolling) {
    now lets take a look at this;

    Code:
    c.sendMessage("You trolling son!") {
    }
    now what the fuck piece of shit is that? why do you have brackets after send the message , brackets are use for if statements, voids, int methods, boolean methods ect, ect, not calling methods, or variables. You would put a semi-colon after calling the message like so;

    Code:
    c.sendMessage("You trolling son!");
    now lets take a look at what the whole thing would look like

    Code:
    if(!c.playerIsTrolling) {
    	c.sendMessage("You trolling son!");
    }
    if further expanded on;

    Code:
    if(!c.playerIsTrolling) {
    	c.sendMessage("You trolling son!");
    } else {
    	c.sendMessage("You not trolling");
    }
    You are 1 half hour late dude..
    Reply With Quote  
     

  13. Thankful user:


Page 1 of 2 12 LastLast

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. [PI]Auto Ban Dupers
    By James_Akins in forum Tutorials
    Replies: 2
    Last Post: 01-10-2011, 06:12 AM
  2. Dupers
    By Runeman1010 in forum Help
    Replies: 7
    Last Post: 07-25-2010, 08:46 PM
  3. [RS2HD] Dupers Ruining Eco!
    By N-G Gemini in forum Help
    Replies: 0
    Last Post: 07-20-2010, 01:02 PM
  4. Flagging dupers
    By Inv4lid™ in forum Snippets
    Replies: 3
    Last Post: 05-17-2009, 07:30 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •