Thread: [Bare-Bones] Project Insanity - Clean

Page 1 of 5 123 ... LastLast
Results 1 to 10 of 48
  1. #1 [Bare-Bones] Project Insanity - Clean 
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,421
    Thanks given
    693
    Thanks received
    1,425
    Rep Power
    1202

    Just a Project Insanity I was working on.

    Code:
    Credit:
    
    Dagenham
    Killamess
    Naffer
    Code:
    Cleaned out.
    Re-did a lot of packaging.
    Deleted all classes that weren't being used.
    Deleted event manager, task manager.
    Added Graham's new task manager.
    Added Killamess's (Rune-Server) MaxHit forumlas.
    Changed the naming of the CFG files so they're consistant (OCD).
    Fixed the offerX trade dupe (easy, but just documenting).
    Deleted all the worldmap stuff.
    Added NPC transformation (Credit to Wale of Rune-Server).
    Password Encyption removed.
    The Config class has been split into two files, so it's less cluttered.
    Barrows.
    Really simple one-wave Jad mini-game.
    Idle-Logout packet re-added. You can easily disable it (IdleLogout class).
    Spoiler for Fight Caves Preview:

    Code:
    public static void enterFightCaves() {
    		c.getPA().movePlayer(2413, 5117, c.playerId * 4);
    	}
    	
    	public static void exitFightCaves() {
    		c.getPA().movePlayer(2438, 5168, 0);
    	}
    	
    	private boolean waveCountStarted = false;
    	public void startFightCaves() {
    		if (!waveCountStarted) {
    			waveCountStarted = true;
    			Server.getTaskScheduler().schedule(new Task(1, true) {
    				int count = 0, timeUntilRound = 10;
    				@Override
    				protected void execute() {
    					count++;
    					c.getPA().walkableInterface(4535);
    					c.getPA().sendFrame126("" + timeUntilRound, 4536);
    					if (count == 2) {
    						timeUntilRound--;
    						count = 0;
    					}
    					if (timeUntilRound == 0) {
    						Server.npcHandler.spawnNpc(c, 2745, 2402, 5088, c.playerId * 4, 0, 15, 90, 6000, 300, true, false);	
    						stop();
    						waveCountStarted = false;
    					}
    				}
    			});
    		}
    	}
    	
    	public static boolean isInFightCaves() {
    		if(c.absX > 2358 && c.absX < 2433 && c.absY > 5042 && c.absY < 5121) {	
    			return true;
    		}
    		return false;
    	}
    	
    	public static void sendFightCaveRespawn() {
    		c.getPA().movePlayer(2438, 5168, 0);	
    	}
    	
    	public static void giveFightCaveRewards() {
    		sendFightCaveRespawn();
    		c.getItems().addItem(6570, 1);
    		c.sendMessage("Congratulations on conquering the Fight Caves! Enjoy your Fire Cape!");
    		c.getCombat().resetPrayers();
    		for (int i = 0; i < 20; i++) {
    			c.playerLevel[i] = c.getPA().getLevelForXP(c.playerXP[i]);
    			c.getPA().refreshSkill(i);
    		}
    	}


    Spoiler for Media:







    [Only registered and activated users can see links. ]

    EDIT: Remove the Pest Control stuff from the Client class (like 4 lines).

    Enjoy.
    Reply With Quote  
     

  2. #2  
    Well, aren't you clever!

    Concious's Avatar
    Join Date
    Feb 2008
    Posts
    1,697
    Thanks given
    27
    Thanks received
    60
    Rep Power
    195
    WHY would you release this.
    Reply With Quote  
     

  3. #3  
    RuneFatality

    Join Date
    May 2009
    Age
    24
    Posts
    2,355
    Thanks given
    1,099
    Thanks received
    388
    Rep Power
    531
    Ty, i'll be ripping killamess' formulas
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    May 2008
    Age
    26
    Posts
    188
    Thanks given
    4
    Thanks received
    1
    Rep Power
    79
    very eye friendly packaging i will be using appreciate it m8
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  5. #5  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,421
    Thanks given
    693
    Thanks received
    1,425
    Rep Power
    1202
    Quote Originally Posted by Devx View Post
    very eye friendly packaging i will be using appreciate it m8
    I know right? Didn't Project Insanity's packaging rape your eyes ? And thank you.

    Quote Originally Posted by Awesome_Sauce View Post
    Ty, i'll be ripping killamess' formulas
    He released them . But alrighty.

    Quote Originally Posted by Matisyahu View Post
    WHY would you release this.
    It's not like it's anything special?

    Quote Originally Posted by Corey View Post
    Is combat any good on this source? If so I'll put some time into networking and maybe re-release.
    It's Project Insanity's combat, so yes and no.
    Reply With Quote  
     

  6. #6  
    Registered Member
    James_'s Avatar
    Join Date
    May 2011
    Posts
    356
    Thanks given
    30
    Thanks received
    43
    Rep Power
    133
    nice that you did this wont be using but its sexy ;P

    [Only registered and activated users can see links. ]

    Reply With Quote  
     

  7. #7  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,421
    Thanks given
    693
    Thanks received
    1,425
    Rep Power
    1202
    Quote Originally Posted by Djappelle View Post
    nice that you did this wont be using but its sexy ;P
    Thank you. If you guys keep up the feedback I'll have to do more. ;D
    Reply With Quote  
     

  8. #8  
    RuneFatality

    Join Date
    May 2009
    Age
    24
    Posts
    2,355
    Thanks given
    1,099
    Thanks received
    388
    Rep Power
    531
    Quote Originally Posted by Mikey` View Post
    I know right? Didn't Project Insanity's packaging rape your eyes ? And thank you.



    He released them . But alrighty.



    It's not like it's anything special?



    It's Project Insanity's combat, so yes and no.
    Yeah but I couldn't be fucked converting and implementing cause i'm a lazy fucker lol.
    Reply With Quote  
     

  9. #9  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,421
    Thanks given
    693
    Thanks received
    1,425
    Rep Power
    1202
    Quote Originally Posted by Awesome_Sauce View Post
    Yeah but I couldn't be fucked converting and implementing cause i'm a lazy fucker lol.
    Someone released a converted version, but yeah.
    Reply With Quote  
     

  10. #10  
    Registered Member
    Purple's Avatar
    Join Date
    Feb 2010
    Age
    26
    Posts
    2,799
    Thanks given
    467
    Thanks received
    260
    Rep Power
    312
    Good job
    Reply With Quote  
     

Page 1 of 5 123 ... 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. Replies: 15
    Last Post: 07-05-2011, 05:55 AM
  2. Bare bones..
    By CbSeven in forum Requests
    Replies: 4
    Last Post: 04-13-2011, 01:38 AM
  3. Replies: 0
    Last Post: 07-19-2010, 11:28 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
  •