Thread: Zamorak Vs Saradomin MiniGame (LIKE CWARS) [NO PICS YET]

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Zamorak Vs Saradomin MiniGame (LIKE CWARS) [NO PICS YET] 
    K0ownage
    Guest
    Open Up a new notepad and add this in it:
    Code:
    import java.io.*;                               //JAVA IMPORT
    import java.util.StringTokenizer;                            //JAVA IMPORT
    import java.util.Calendar;                            //JAVA IMPORT
    import java.util.GregorianCalendar;                        //JAVA IMPORT
    import java.net.InetAddress;                           //JAVA IMPORT
    import java.net.URL;                               //JAVA IMPORT
    import java.awt.*;                                //JAVA IMPORT
    import java.awt.event.*;                           //JAVA IMPORT
    import java.net.*;                                    //JAVA IMPORT
    
    public class gw {
    
        public static int godwarTimer = 1320;               //Timer for the actual CastleWars game (10 Minutes)
        public static int StartTimer = 500;                            //Timer that initates the CastleWarz Game
        public static boolean godwarOn = false;                    //Turns CastleWars On or Off
        public static int maxPlayers = 50;                   //Max players allowed total in gw
        public static int maxZammy = 0;                           //Max players on Zammy Team
        public static int maxSara = 0;                       //Max players on Saradomin Team
    
       public gw() {
            //misc.println("[GW] god wars - © K0ownage Inc.");
            }
    
        public static boolean setUp() {
            /* Skill Setup */
            return true;
        }
    
        public boolean process () {                    //Happening every 500MS
    
            StartTimer += 1;                    //Makes the Timer to start gw go up
    
            if (StartTimer >= 600 && godwarOn == false) {       //If castle wars is not on, and the start timer reaches 5 mins,
            PlayerHandler.messageToAll = "A God War Game has Begun!";
            godwarOn = true;
            StartTimer = 0;
        }
    
    
            if (godwarOn == true && godwarTimer >= 0) {
            godwarTimer -= 1;
        }
    
            if (godwarOn == true && godwarTimer < 0) {
            gwEnd();
        }
    
        return true;
        }
    
        public static void gwLoop(int godwarTimer) {
    
            if(godwarTimer == 0)
                return;
        }
    
        public static void gwEnd() {                   //Void to end gw
    
        godwarTimer = 1320;
        StartTimer = 0;                                             //Timer that initates the Gw Game (loops back to 0)
        godwarOn = false;                           
        PlayerHandler.messageToAll = "A God Wars Game has just ended";  
        maxZammy = 0;                          
        maxSara = 0;
        }
    
    }
    Save as GwHandler.java
    I'm not sure if you HAVE to do this, but do it anyways, if you get errors then remove it.
    Go to server.java
    Search:
    Code:
    public static ShopHandler shopHandler = null;
    Under it put:
    Code:
    public static GwHandler GwHandler = null;
    Go to client.java and add these
    Code:
    public boolean sara = false;
    public boolean zammy = false;
    Add these to your voids, (this is a menu)
    Code:
    public void zammycommands()//Start Of zammycommands
    {
    sendQuest("@[email protected] Commands", 8144);
    clearQuestInterface();
    sendQuest("::zammyhq - Teleports you to the zamorak head quarters.", 8147);
    sendQuest("::zammyoutfit - gives you the zammy uniform", 8148);
    sendQuest("::zammywar - teleports you to the battle grounds!", 8149);
    sendQuestSomething(8143);
    showInterface(8134);
    flushOutStream();
    }
    public void saracommands()//Start Of saracommands
    {
    sendQuest("@[email protected] Commands", 8144);
    clearQuestInterface();
    sendQuest("::sarahq - teleports you to the saradomin HQ", 8147);
    sendQuest("::saraoutfit - gives you the saradomin uniform to stand out as a follower", 8148);
    sendQuest("::sarawar - teleports you to the battlearena", 8149);
    sendQuestSomething(8143);
    showInterface(8134);
    flushOutStream();
    }
    Add these to your commands:
    Code:
    f (command.equalsIgnoreCase("joinsara")) {
    if  (sara == false && zammy == false && gw.maxSara < 25);
    sara = true;
    sendMessage("Your in! Type ::saracommands for clan commands");
    sendMessage("Type ::leavesara to leave saradomin.");
    } else {
    if (gw.maxSara == 25) {
    sendMessage("Sorry, this team is full");
    }
    }
    
    if (command.equalsIgnoreCase("leavesara")) {
    if (sara == true) {
    sara = false;
    teleportToX = 3254;
    teleportToY = 3420;
    sendMessage("Why did you leave? Saradomin gonna kill you now!");
    } else {
    sendMessage("Hey! You have to join sara first!");
    }
    }
    
    if (command.equalsIgnoreCase("sarahq")) {
    if (sara == true) {
            teleportToX = 2644;
            teleportToY = 9894;
    } else {
    sendMessage("Hey! You have to join sara first!");
    }
    }
    
    if (command.equalsIgnoreCase("sarawar")) {
            teleportToX = 2057;
            teleportToY = 3159;
            sendMessage("ARRRAGGHHHHHHHHHHHH!");
    }
    
    
    if (command.equalsIgnoreCase("saraoutfit")) {
    if (sara == true) {
            addItem(2661, 1);
            addItem(2663, 1);
            addItem(2667, 1);
            addItem(2412, 1);
            addItem(4151, 1);
            addItem(1055, 1);
            sendMessage("Wear the saradomin's colors with pride!");
    } else {
    sendMessage("Hey! You have to join sara first!");
    }
    }
    if (command.equalsIgnoreCase("joinzammy")) {
    if  (sara == false && zammy == false && gw.maxZammy < 25);
    zammy = true;
    sendMessage("Your in! Type ::zammycommands for clan commands");
    sendMessage("Type ::leavezammy to leave zamorak.");
    } else {
    if (gw.maxZammy == 25) {
    sendMessage("Sorry, this team is full");
    }
    }
    
    if (command.equalsIgnoreCase("leavezammy")) {
    if (zammy == true) {
    zammy = false;
    teleportToX = 3254;
    teleportToY = 3420;
    sendMessage("Why did you leave, zamorak gonna kill you now!");
    } else {
    sendMessage("Hey! You have to join zammy first!");
    }
    }
    
    if (command.equalsIgnoreCase("zammyhq")) {
    if (zammy == true) {
            teleportToX = 3082;
            teleportToY = 9896;
    } else {
    sendMessage("Hey! You have to join zamorak first!");
    }
    }
    
    if (command.equalsIgnoreCase("zammywar")) {
            teleportToX = 2099;
            teleportToY = 3161;
            sendMessage("AAAARAGHHHHHHHHHHHHHHHHH!!!");
    }
    
    
    if (command.equalsIgnoreCase("zammyoutfit")) {
    if (zammy == true) {
            addItem(2653, 1);
            addItem(2655, 1);
            addItem(2659, 1);
            addItem(2414, 1);
            addItem(1057, 1);
            addItem(4151, 1);
            sendMessage("Wear the clan's colors with pride!");
    } else {
    sendMessage("Hey! You have to join zammy first!");
    }
    }
    else if (command.equalsIgnoreCase("zammycommands"))
    {
    zammycommands();
    }
    else if (command.equalsIgnoreCase("saracommands"))
    {
    saracommands();
    }
    Search
    Code:
    public void newObjects()
    Under it:
    Add This:

    Code:
    /*start of god wars*/
    makeGlobalObject(2071, 3149, 4905, -3, 10);//Catapult
    makeGlobalObject(2071, 3152, 660, 0, 10);//corpes
    makeGlobalObject(2073, 3162, 5, -3, 10);//Broken cannon
    makeGlobalObject(3075, 9885, 4247,  -1, 10);//bar
    makeGlobalObject(3075, 9887, 4247,  -1, 10);//bar
    makeGlobalObject(3075, 9887, 4273, -3, 10);//bar pumps
    makeGlobalObject(3074, 9888, 4286, -3, 10);//keg
    makeGlobalObject(3073, 9888, 4286, -3, 10);//keg
    makeGlobalObject(3081, 9888, 2874, -3, 10);//zammy
    makeGlobalObject(3075, 9896, 2213, -1, 10);//bank1
    makeGlobalObject(3075, 9895, 2213, -1, 10);//bank1
    makeGlobalObject(3080, 9895, 4005, -1, 10);//well
    makeGlobalObject(3080, 9887, 3918, -1, 10);//Eleven lamp
    makeGlobalObject(3080, 9889, 3918, -1, 10);//11lamp
    makeGlobalObject(3082, 9887, 3918, -1, 10);//11lamp
    makeGlobalObject(3082, 9889, 3918, -1, 10);//11lamp
    makeGlobalObject(3079, 9884, 4901, -2, 10);//zammystanderd
    makeGlobalObject(3081, 9884, 4901, -2, 10);//zammystanderd
    makeGlobalObject(3082, 9880, 6302, -2, 10);//throne
    makeGlobalObject(2642, 9893, 4900, -2, 10);//sarastanderd
    makeGlobalObject(2643, 9893, 4902, -2, 10);//sarastanderd
    makeGlobalObject(2644, 9893, 4902, -2, 10);//sarastanderd
    makeGlobalObject(2645, 9893, 4902, -2, 10);//sarastanderd
    makeGlobalObject(2651, 9903, 2213, -3, 10);//bank1
    makeGlobalObject(2102, 3160, 4901, -3, 10);//zammystanderd
    makeGlobalObject(2102, 3161, 4901, -3, 10);//zammystanderd
    makeGlobalObject(2102, 3162, 4901, -3, 10);//zammystanderd
    makeGlobalObject(2055, 3158, 4902, -1, 10);//sarastanderd
    makeGlobalObject(2055, 3157, 4902, -1, 10);//sarastanderd
    makeGlobalObject(2055, 3156, 4902, -1, 10);//sarastanderd
    /*End of god wars*/
    Compile, Errors? Post Here.

    Credits: K0ownage, Smartdude (for clanhideout)
     

  2. #2  
    Registered Member Epic ƒail's Avatar
    Join Date
    Nov 2007
    Posts
    279
    Thanks given
    8
    Thanks received
    0
    Rep Power
    45
    cul and didnt u already post this?

    WTF NOOB!
     

  3. #3  
    Banned

    Join Date
    Mar 2008
    Posts
    2,595
    Thanks given
    128
    Thanks received
    191
    Rep Power
    0
    No doubt leeched. First of all, you didn't call it godwars. Second of all. If you really made this, then why would you forget the step where you put the process in process.java or another process?
     

  4. #4  
    haloking
    Guest
    Well you said to save it as godwarshandler and the class is gw so LEECHED
     

  5. #5  
    Shelton
    Guest
    And whats with all the imports l0l0l0l0
     

  6. #6  
    K0ownage
    Guest
    I didn't leech.
    You guys judge from post count, yet no proof.
    I didn't call it godwars because there is no bandos or armadyl
     

  7. #7  
    Banned

    Join Date
    Mar 2008
    Posts
    2,595
    Thanks given
    128
    Thanks received
    191
    Rep Power
    0
    Then why did you call it god wars all over the class rofl. And you still aren't answering why you left out process part.
     

  8. #8  
    Registered Member
    Nikita's Avatar
    Join Date
    Aug 2008
    Age
    26
    Posts
    818
    Thanks given
    180
    Thanks received
    88
    Rep Power
    86
    This is:
    1. Fucked
    2. Stupid
    3. Its gaved me errors

    :@

    RoonScape
     

  9. #9  
    collin92
    Guest
    not bad, but i think you cant call this like castle wars
     

  10. #10  
    Registered Member Steve123's Avatar
    Join Date
    Oct 2008
    Age
    26
    Posts
    154
    Thanks given
    0
    Thanks received
    0
    Rep Power
    23
    lol leeeeeeched first of all u sed it was cws but then u named the whole thing gws???? lol
    stop wasting peoples time
    signature suck balls but cookies dont!
    Y-U-M-M-M-M->:cookie:<-M-M-M-M-U-Y
     

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

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