Thread: Ragefire Release. Pretty Good Learning Base

Page 8 of 10 FirstFirst ... 678910 LastLast
Results 71 to 80 of 95
  1. #71  
    Registered Member KushKings's Avatar
    Join Date
    Jul 2018
    Posts
    457
    Thanks given
    53
    Thanks received
    24
    Rep Power
    37
    looks good going to try it out
    Attached image
    Reply With Quote  
     

  2. #72  
    Donator


    Join Date
    Nov 2011
    Posts
    784
    Thanks given
    108
    Thanks received
    705
    Rep Power
    5000
    Quote Originally Posted by BubbaGump View Post
    thanks for the release and all the re uploads. have a question about spawning items. when i spawn in an item it always spawns 2x, don't see in the codes where it would spawn 2. and almost all the custom items are unusable clue scroll reward boxes when i try to spawn one in using::item. tried to spawn several different items, and would end up with the same clue scroll reward box (rare). what can i do to fix this? the item id/info are all different but spawn the same item.
    Commandpacketlistener.java
    Under developer commands, remove this piece:
    Code:
    if (command[0].equals("item")) {
    			int id = Integer.parseInt(command[1]);
    			int amount = (command.length == 2 ? 1
    					: Integer.parseInt(command[2].trim().toLowerCase().replaceAll("k", "000").replaceAll("m", "000000")
    							.replaceAll("b", "000000000")));
    			if (amount > Integer.MAX_VALUE) {
    				amount = Integer.MAX_VALUE;
    			}
    			Item item = new Item(id, amount);
    			player.getInventory().add(item, true);
    			player.getPacketSender().sendMessage("you gave yourself item: " + item + " amount: " + amount + ".");
    
    			player.getPacketSender().sendItemOnInterface(47052, 11694, 1);
    		}
    Quote Originally Posted by KushKings View Post
    looks good going to try it out
    I'm using the same base, highly modified already, so if you've got basic questions feel free to ask me.
    Reply With Quote  
     

  3. #73  
    Donator

    Join Date
    Apr 2016
    Posts
    45
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    Could any help me with this. I get this code when i run the source.

    Oct 25, 2018 5:39:21 AM com.ruseps.GameServer main
    INFO: Initializing the loader...
    Loaded 2232 map definitions.
    Loaded 0 in 0 ms
    LOADED: 19 Easy, 12 Medium, 1 Hard, 1 Elite Achievements
    Oct 25, 2018 5:39:28 AM com.ruseps.GameServer main
    SEVERE: Could not start Ragefire! Program terminated.
    org.jboss.netty.channel.ChannelException: Failed to bind to: 0.0.0.0/0.0.0.0:43594
    at org.jboss.netty.bootstrap.ServerBootstrap.bind(Ser verBootstrap.java:298)
    at com.ruseps.GameLoader.finish(GameLoader.java:118)
    at com.ruseps.GameServer.main(GameServer.java:27)
    Caused by: java.net.BindException: Address already in use: bind
    at sun.nio.ch.Net.bind0(Native Method)
    at sun.nio.ch.Net.bind(Unknown Source)
    at sun.nio.ch.Net.bind(Unknown Source)
    at sun.nio.ch.ServerSocketChannelImpl.bind(Unknown Source)
    at sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    at org.jboss.netty.channel.socket.nio.NioServerSocket PipelineSink.bind(NioServerSocketPipelineSink.java :140)
    at org.jboss.netty.channel.socket.nio.NioServerSocket PipelineSink.handleServerSocket(NioServerSocketPip elineSink.java:90)
    at org.jboss.netty.channel.socket.nio.NioServerSocket PipelineSink.eventSunk(NioServerSocketPipelineSink .java:64)
    at org.jboss.netty.channel.Channels.bind(Channels.jav a:569)
    at org.jboss.netty.channel.AbstractChannel.bind(Abstr actChannel.java:189)
    at org.jboss.netty.bootstrap.ServerBootstrap$Binder.c hannelOpen(ServerBootstrap.java:343)
    at org.jboss.netty.channel.Channels.fireChannelOpen(C hannels.java:170)
    at org.jboss.netty.channel.socket.nio.NioServerSocket Channel.<init>(NioServerSocketChannel.java:80)
    at org.jboss.netty.channel.socket.nio.NioServerSocket ChannelFactory.newChannel(NioServerSocketChannelFa ctory.java:158)
    at org.jboss.netty.channel.socket.nio.NioServerSocket ChannelFactory.newChannel(NioServerSocketChannelFa ctory.java:86)
    at org.jboss.netty.bootstrap.ServerBootstrap.bind(Ser verBootstrap.java:277)
    ... 2 more

    Oct 25, 2018 5:39:28 AM com.ruseps.util.ShutdownHook run
    INFO: The shutdown hook is processing all required actions...
    Reply With Quote  
     

  4. #74  
    Registered Member
    Join Date
    Mar 2013
    Posts
    192
    Thanks given
    7
    Thanks received
    11
    Rep Power
    38
    Quote Originally Posted by Frikk View Post
    Could any help me with this. I get this code when i run the source.
    check the imported jar's and you're JDK librarys added into the set up, also you're launch and compile JDK versions in the eclipse project settings
    r
    Reply With Quote  
     

  5. #75  
    Developer

    Join Date
    May 2015
    Age
    26
    Posts
    185
    Thanks given
    0
    Thanks received
    9
    Rep Power
    1
    anyone got this source/client/cache?
    Reply With Quote  
     

  6. #76  
    Donator


    Join Date
    Nov 2011
    Posts
    784
    Thanks given
    108
    Thanks received
    705
    Rep Power
    5000
    Quote Originally Posted by VykorOS View Post
    anyone got this source/client/cache?
    https://www.dropbox.com/s/rt6l3o0x1d...FERNO.zip?dl=0
    Reply With Quote  
     

  7. #77  
    Registered Member
    Join Date
    Apr 2016
    Posts
    6
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    Code:
    Oct 25, 2018 5:39:21 AM com.ruseps.GameServer main
    INFO: Initializing the loader...
    Loaded 2232 map definitions.
    Loaded 0 in 0 ms
    LOADED: 19 Easy, 12 Medium, 1 Hard, 1 Elite Achievements
    Oct 25, 2018 5:39:28 AM com.ruseps.GameServer main
    SEVERE: Could not start Ragefire! Program terminated.
    org.jboss.netty.channel.ChannelException: Failed to bind to: 0.0.0.0/0.0.0.0:43594
    at org.jboss.netty.bootstrap.ServerBootstrap.bind(Ser verBootstrap.java:298)
    at com.ruseps.GameLoader.finish(GameLoader.java:118)
    at com.ruseps.GameServer.main(GameServer.java:27)
    Caused by: java.net.BindException: Address already in use: bind
    at sun.nio.ch.Net.bind0(Native Method)
    at sun.nio.ch.Net.bind(Unknown Source)
    at sun.nio.ch.Net.bind(Unknown Source)
    at sun.nio.ch.ServerSocketChannelImpl.bind(Unknown Source)
    at sun.nio.ch.ServerSocketAdaptor.bind(Unknown Source)
    at org.jboss.netty.channel.socket.nio.NioServerSocket PipelineSink.bind(NioServerSocketPipelineSink.java :140)
    at org.jboss.netty.channel.socket.nio.NioServerSocket PipelineSink.handleServerSocket(NioServerSocketPip elineSink.java:90)
    at org.jboss.netty.channel.socket.nio.NioServerSocket PipelineSink.eventSunk(NioServerSocketPipelineSink .java:64)
    at org.jboss.netty.channel.Channels.bind(Channels.jav a:569)
    at org.jboss.netty.channel.AbstractChannel.bind(Abstr actChannel.java:189)
    at org.jboss.netty.bootstrap.ServerBootstrap$Binder.c hannelOpen(ServerBootstrap.java:343)
    at org.jboss.netty.channel.Channels.fireChannelOpen(C hannels.java:170)
    at org.jboss.netty.channel.socket.nio.NioServerSocket Channel.<init>(NioServerSocketChannel.java:80)
    at org.jboss.netty.channel.socket.nio.NioServerSocket ChannelFactory.newChannel(NioServerSocketChannelFa ctory.java:158)
    at org.jboss.netty.channel.socket.nio.NioServerSocket ChannelFactory.newChannel(NioServerSocketChannelFa ctory.java:86)
    at org.jboss.netty.bootstrap.ServerBootstrap.bind(Ser verBootstrap.java:277)
    ... 2 more
    
    Oct 25, 2018 5:39:28 AM com.ruseps.util.ShutdownHook run
    INFO: The shutdown hook is processing all required actions...
    Anyone know a fix for this?
    Attached image
    Reply With Quote  
     

  8. #78  
    Registered Member
    Join Date
    Oct 2014
    Posts
    40
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    can someone please reupload link, thanks
    Reply With Quote  
     

  9. #79  
    Registered Member
    Join Date
    Oct 2014
    Posts
    40
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    link needs re-updating
    Reply With Quote  
     

  10. #80  
    Registered Member
    Join Date
    Feb 2019
    Posts
    27
    Thanks given
    2
    Thanks received
    1
    Rep Power
    11
    i need it too can someone update the link please ?
    Reply With Quote  
     

Page 8 of 10 FirstFirst ... 678910 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: 7
    Last Post: 11-14-2014, 05:28 PM
  2. Simple Bases & Releases
    By Bow in forum Requests
    Replies: 0
    Last Post: 10-04-2014, 03:18 AM
  3. A nice Simple Website release
    By Morphine in forum Website Development
    Replies: 8
    Last Post: 09-30-2013, 10:43 PM
  4. Simple Template Release
    By tomasio in forum Website Development
    Replies: 9
    Last Post: 05-03-2013, 08:09 PM
  5. Simple Machines - Releases & Tutorial List
    By Ahrim in forum Website Development
    Replies: 9
    Last Post: 09-02-2012, 10:56 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
  •