Thread: Prometheus Release

Page 1 of 5 123 ... LastLast
Results 1 to 10 of 47
  1. #1 Prometheus Release 
    Registered Member
    Join Date
    Sep 2015
    Posts
    90
    Thanks given
    24
    Thanks received
    15
    Rep Power
    25




    Introduction
    Prometheus was supposed to be a long-term project for me and eventually develop it into a server, but i seem to run out of motivation, but i hope this release can come in handy for some who wish to use. If you do use this and want to make something out of it PM me and i'd be happy to help out. There wasn't really much done to it. I was planning to spend a few days to clearing it out but then i've just decided to release it. Theres a hell of alot more than i've shown so check it out. Its nothing special so don't bother with the pointless comments Open to CnC

    Development Log
    Code:
    [DEV LOG]
    -Downloaded Ardi 2.0/3.0
    -Removed all anti-leeches
    -Changed all names to my project name in client/server
    -Changed client background
    -Item models #1 (tent,tentwhip,d def,drag whip,barrow whip)
    -Fixed some item wear issues
    -Added Npc to heal hitpoints
    -Added Killstreak system 100%
    -Improved client loading bar
    -Added basic target system 50%
    -Fixed Data on/off
    -Added a guide dialgoue on login for information about Prometheus.
    -Target name now shows on wildy interface
    -Added basic loyalty system 1 point every 10 minutes
    -Organised quest tab
    -Added enter to login
    -Fixed up dialogue errors
    -Item models #2 (acb,blowpipe,tokhaar,SOTD)
    -Added run orb onto gameframe
    -Started to remove some useless shit
    -Added some custom commands (::infspec,infpray,infhp)
    -Made corporeal beast dungeon area multi
    -Added working teletabs
    -Item models #3 (TSTOD,Graceful armour, Spirit shields)
    -Fixed target system spam
    -Added Earning potential system (98%)
    -Removed graceful models creating a odd issue
    -EP loads on the target interface
    -Added teleports for (training,bosses, etc)
    -Added all the godwars npc's into spawn config
    -Started working on achievements 12/24

    Known Bugs
    Code:
    -Corporeal beast animation + attacks (needs to be added)
    -D claws animation and spec (needs to be added)
    -Target system (check yourself needs work!)
    -EP system (Doesn't give the EP drops)
    -PC is pretty fucked
    -Godwars (check for yourself)
    -Teletabs need animation (they have gfx)
    Media








    Source/Client
    https://www.dropbox.com/s/66vfwweder...theus.rar?dl=0
    Cache - Yes its called salad
    https://www.dropbox.com/s/ixy4kvrdbv...salad.rar?dl=0

    Error fix
    [SPOIL]
    Quote Originally Posted by RuneFurst View Post
    Error on client:

    Code:
    Error: T2 - 126,104,208 - 14,0,0 - 69,80,58,64,100,114,101,64,32,48,37,10,83,-72,
    Go to Client.java Server sided
    Look for
    Code:
     if (inWild()) {
    Replace it it with below up to where i replaced it.

    Code:
    if (inWild()) {
    			int modY = absY > 6400 ? absY - 6400 : absY;
    			wildLevel = (((modY - 3520) / 8) + 1);
    			EarningPotential.checkPotential(this);
    			//getPA().sendFrame126("Level: " + wildLevel, 21302);
    			//getPA().walkableInterface(21300);
    			//getPA().sendFrame126("Target:@gre@ " +playerTarget+ "!", 21303);
    			getPA().walkableInterface(197);
    			if (Config.SINGLE_AND_MULTI_ZONES) {
    				if (inWild() && !Target.inWild.contains(this)) {
    					Target.giveTarget(this);
    				if (inMulti()) {
    					//Client target = (Client) Server.playerHandler.players[killerId];
    					//String targetName = Misc.formatPlayerName(target.playerName);
    					getPA().sendFrame126("@yel@Level: " + wildLevel, 199);
    				} else {
    					//Client target = (Client) Server.playerHandler.players[killerId];
    					//String targetName = Misc.formatPlayerName(target.playerName);
    					getPA().sendFrame126("@yel@Level: " + wildLevel, 199);
    
    					}
    				}
    			} else {
    				getPA().multiWay(-1);
    				getPA().sendFrame126("@yel@Level: " + wildLevel, 199);
    			}
    			getPA().showOption(3, 0, "Attack", 1);
    		} else if (inPcBoat()) {
    			getPA().walkableInterface(21119);
    		} else if (inPcGame()) {
    			getPA().walkableInterface(21100);
    		} else if (inDuelArena()) {
    			getPA().walkableInterface(201);
    			if (duelStatus == 5) {
    				getPA().showOption(3, 0, "Attack", 1);
    			} else {
    				getPA().showOption(3, 0, "Challenge", 1);
    			}
    		} else if (inBarrows()) {
    			getPA().sendFrame99(2);
    			getPA().sendFrame126("Kill Count: " + barrowsKillCount, 4536);
    			getPA().walkableInterface(4535);
    		} else if (inCwGame || inPits) {
    			getPA().showOption(3, 0, "Attack", 1);
    		} else if (getPA().inPitsWait()) {
    			getPA().showOption(3, 0, "Null", 1);
    		} else if (!inCwWait) {
    			getPA().sendFrame99(0);
    			getPA().walkableInterface(-1);
    			getPA().showOption(3, 0, "Null", 1);
    		}
    				/*if (earningPotential < 50) {
    			getPA()
    					.sendFrame126("EP:@dre@ " + earningPotential + "%", 21304);
    		} else {
    			getPA()
    					.sendFrame126("EP:@yel@ " + earningPotential + "%", 21304);
    		}
    		if (earningPotential > 80) {
    			getPA()
    					.sendFrame126("EP:@gre@ " + earningPotential + "%", 21304);
    		}*/
    [/SPOIL]

    Credits
    Code:
    Ardi
    Myself
    Valiant
    R-S Community



    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    Mar 2015
    Posts
    33
    Thanks given
    4
    Thanks received
    1
    Rep Power
    0
    nice contribution
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member
    Join Date
    Jun 2015
    Posts
    60
    Thanks given
    5
    Thanks received
    3
    Rep Power
    11
    nice release
    Reply With Quote  
     

  5. Thankful user:


  6. #4  
    Registered Member RuneFurst's Avatar
    Join Date
    Apr 2013
    Posts
    132
    Thanks given
    127
    Thanks received
    5
    Rep Power
    6
    Thanks for the contribution, looks like something I'll use as a project, will be using this instead of Zaros.



    Reply With Quote  
     

  7. Thankful user:


  8. #5  
    Registered Member
    Join Date
    Oct 2015
    Posts
    50
    Thanks given
    21
    Thanks received
    6
    Rep Power
    11
    nice release
    Reply With Quote  
     

  9. Thankful user:


  10. #6  
    Registered Member RuneFurst's Avatar
    Join Date
    Apr 2013
    Posts
    132
    Thanks given
    127
    Thanks received
    5
    Rep Power
    6
    Error on client:

    Code:
    Error: T2 - 126,104,208 - 14,0,0 - 69,80,58,64,100,114,101,64,32,48,37,10,83,-72,



    Reply With Quote  
     

  11. #7  
    Registered Member
    Join Date
    Sep 2015
    Posts
    90
    Thanks given
    24
    Thanks received
    15
    Rep Power
    25
    Quote Originally Posted by RuneFurst View Post
    Error on client:

    Code:
    Error: T2 - 126,104,208 - 14,0,0 - 69,80,58,64,100,114,101,64,32,48,37,10,83,-72,
    Go to Client.java Server sided
    Look for
    Code:
     if (inWild()) {
    Replace it it with below up to where i replaced it.

    Code:
    if (inWild()) {
    			int modY = absY > 6400 ? absY - 6400 : absY;
    			wildLevel = (((modY - 3520) / 8) + 1);
    			EarningPotential.checkPotential(this);
    			//getPA().sendFrame126("Level: " + wildLevel, 21302);
    			//getPA().walkableInterface(21300);
    			//getPA().sendFrame126("Target:@gre@ " +playerTarget+ "!", 21303);
    			getPA().walkableInterface(197);
    			if (Config.SINGLE_AND_MULTI_ZONES) {
    				if (inWild() && !Target.inWild.contains(this)) {
    					Target.giveTarget(this);
    				if (inMulti()) {
    					//Client target = (Client) Server.playerHandler.players[killerId];
    					//String targetName = Misc.formatPlayerName(target.playerName);
    					getPA().sendFrame126("@yel@Level: " + wildLevel, 199);
    				} else {
    					//Client target = (Client) Server.playerHandler.players[killerId];
    					//String targetName = Misc.formatPlayerName(target.playerName);
    					getPA().sendFrame126("@yel@Level: " + wildLevel, 199);
    
    					}
    				}
    			} else {
    				getPA().multiWay(-1);
    				getPA().sendFrame126("@yel@Level: " + wildLevel, 199);
    			}
    			getPA().showOption(3, 0, "Attack", 1);
    		} else if (inPcBoat()) {
    			getPA().walkableInterface(21119);
    		} else if (inPcGame()) {
    			getPA().walkableInterface(21100);
    		} else if (inDuelArena()) {
    			getPA().walkableInterface(201);
    			if (duelStatus == 5) {
    				getPA().showOption(3, 0, "Attack", 1);
    			} else {
    				getPA().showOption(3, 0, "Challenge", 1);
    			}
    		} else if (inBarrows()) {
    			getPA().sendFrame99(2);
    			getPA().sendFrame126("Kill Count: " + barrowsKillCount, 4536);
    			getPA().walkableInterface(4535);
    		} else if (inCwGame || inPits) {
    			getPA().showOption(3, 0, "Attack", 1);
    		} else if (getPA().inPitsWait()) {
    			getPA().showOption(3, 0, "Null", 1);
    		} else if (!inCwWait) {
    			getPA().sendFrame99(0);
    			getPA().walkableInterface(-1);
    			getPA().showOption(3, 0, "Null", 1);
    		}
    				/*if (earningPotential < 50) {
    			getPA()
    					.sendFrame126("EP:@dre@ " + earningPotential + "%", 21304);
    		} else {
    			getPA()
    					.sendFrame126("EP:@yel@ " + earningPotential + "%", 21304);
    		}
    		if (earningPotential > 80) {
    			getPA()
    					.sendFrame126("EP:@gre@ " + earningPotential + "%", 21304);
    		}*/



    Reply With Quote  
     

  12. Thankful user:


  13. #8  
    Extreme Donator Prometheus Release Market Banned



    Join Date
    Aug 2011
    Age
    28
    Posts
    3,589
    Thanks given
    1,402
    Thanks received
    1,620
    Rep Power
    5000
    Won't use but nice release

    Attached image

    Attached image
    Discord: Roy#2382

    Reply With Quote  
     

  14. Thankful user:


  15. #9  
    Registered Member
    Join Date
    Nov 2014
    Posts
    7
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    Hey when i try and log in it works then logs me out again how do i fix that sorry im new to coding?
    Reply With Quote  
     

  16. #10  
    Registered Member
    Join Date
    Sep 2015
    Posts
    90
    Thanks given
    24
    Thanks received
    15
    Rep Power
    25
    Quote Originally Posted by pvm_zac View Post
    Hey when i try and log in it works then logs me out again how do i fix that sorry im new to coding?
    Use the fix above..



    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. [Final Release] Project blue V2...
    By Sam Server in forum Downloads
    Replies: 73
    Last Post: 05-02-2013, 04:14 PM
  2. [Release] Testclient
    By sarah101 in forum Downloads
    Replies: 28
    Last Post: 09-04-2008, 04:34 PM
  3. Nforcescape (released!!)
    By nforce2 in forum Downloads
    Replies: 5
    Last Post: 01-12-2008, 02:12 PM
  4. [Release] P Hatz Scape
    By P Hatz Own in forum Downloads
    Replies: 18
    Last Post: 11-12-2007, 04:42 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
  •