Thread: Asteria OSRS | Stable Base

Page 7 of 9 FirstFirst ... 56789 LastLast
Results 61 to 70 of 89
  1. #61  
    Banned
    Join Date
    Jul 2017
    Posts
    11
    Thanks given
    5
    Thanks received
    0
    Rep Power
    0
    Could someone explain how to fix the setting tab?
    Reply With Quote  
     

  2. #62  
    Inferno Founder

    Jin_'s Avatar
    Join Date
    May 2017
    Posts
    1,852
    Thanks given
    16
    Thanks received
    333
    Rep Power
    400
    Nice release!
    Reply With Quote  
     

  3. #63  
    Registered Member

    Join Date
    Nov 2015
    Age
    24
    Posts
    1,980
    Thanks given
    334
    Thanks received
    1,051
    Rep Power
    5000
    that moment when a ''stable'' 317 release becomes a help thread
    Reply With Quote  
     

  4. #64  
    Registered Member

    Join Date
    Feb 2015
    Posts
    830
    Thanks given
    12
    Thanks received
    200
    Rep Power
    118
    Quote Originally Posted by tommeh View Post
    that moment when a ''stable'' 317 release becomes a help thread
    help thread and argument thread.
    Attached image
    Reply With Quote  
     

  5. #65  
    Banned

    Join Date
    Apr 2013
    Posts
    1,614
    Thanks given
    410
    Thanks received
    475
    Rep Power
    0
    Quote Originally Posted by Dinh View Post
    help thread and argument thread.
    I don't mind, although i don't see any arguments just a lot of bashing/statements.
    Reply With Quote  
     

  6. #66  
    Registered Member
    Join Date
    May 2016
    Posts
    43
    Thanks given
    1
    Thanks received
    4
    Rep Power
    11
    Dude. I downloaded intelliJ, IMPORTED this project and everything, but I have no idea how to run it, or what build configurations to use to start it pls help someone. I'm so used to eclipse, not intelliJ, I would really appreciate some help.
    Reply With Quote  
     

  7. #67  
    Banned

    Join Date
    Apr 2013
    Posts
    1,614
    Thanks given
    410
    Thanks received
    475
    Rep Power
    0
    File > Project Structure

    • Make sure launguage level is 8
    • Then set your compiler output to the bin folder


    Once you have done that, select modules tab, set the source, set the excluded.

    Attached image

    Then set your run configurations

    Attached image

    Goodluck
    Reply With Quote  
     

  8. #68  
    Registered Member
    Join Date
    Dec 2014
    Posts
    435
    Thanks given
    18
    Thanks received
    35
    Rep Power
    11
    Quote Originally Posted by trees View Post
    I was originally creating this to host but we decided to use something else, this is the same server and client i had up for sale minus all client work. This is still a fantastic base for someone to use i just don't want it collecting dust and put to use. Please check out our new project which took over this name and branding!

    https://www.rune-server.ee/runescape...xperience.html

    Whats this got?
    • OSRS Definitions
    • OSRS Bonuses and Requirements
    • OSRS Spawn Nodes
    • Decent Pathfinding
    • Player and NPC Updating
    • Equipment Handling
    • Banking
    • Combat


    If you would like to fix the item coloring and options, review this post.

    Attached image

    Download (a thanks or rep+ is appreciated)

    This was setup in intellij, if you don't know how to setup the project up in eclipse, use intellij and follow instructions below
    Spoiler for Instructions_intellij:

    File > Project Structure

    • Make sure launguage level is 8
    • Then set your compiler output to the bin folder


    Once you have done that, select modules tab, set the source, set the excluded.

    Attached image

    Then set your run configurations

    Attached image

    Goodluck


    Credits:
    nshusa
    trees
    lare96
    Looks great man im going to use it for my upcoming project!


    OSRS Pure
    Reply With Quote  
     

  9. #69  
    Im an albatraoz

    Nand0's Avatar
    Join Date
    Feb 2010
    Age
    31
    Posts
    948
    Thanks given
    233
    Thanks received
    128
    Rep Power
    241
    Thanks for releasing hope somebody puts good use to this!



    Looking for blazing fast and affordable vps or web hosting?
    AllGeniusHost



    Reply With Quote  
     

  10. #70  
    Ex Rune-Scaper

    Join Date
    Jun 2008
    Posts
    3,534
    Thanks given
    457
    Thanks received
    1,257
    Rep Power
    990
    One big thing I don't like about this is Asteria's plugins.
    Code:
    implements PluginListener<ObjectFirstClickPlugin>
    Plugins need to be able to be loaded on runtime. When you have generic interfaces you run into one of Java's biggest issues. Type errasures.

    Because of this you're not allowed to listen on many events from the same class.

    E.g To do this in Asteria you would have to use 2 classes. If I wanted to listen to 1 more event than that would be 3 classes.

    Code:
    public class CrystalChestPlugin extends PluginContext {
    
        @Override
        protected boolean firstClickObject(Player player, ObjectClickEvent event) {
            if (event.getObject().getId() != 2191) {
                return false;
            }
    
            // logic
            return true;
        }
    
        @Override
        protected boolean itemOnObject(Player player, ItemOnObjectEvent event) {
            if (event.getUsed().getId() != 989 && event.getObject().getId() != 2191) {
                return false;
            }
    
            // logic
            return true;
        }
    
    }
    Attached image
    Reply With Quote  
     

  11. Thankful users:


Page 7 of 9 FirstFirst ... 56789 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. Most stable base/source to work with?
    By arr0wtohell in forum Help
    Replies: 4
    Last Post: 04-03-2010, 11:26 AM
  2. Replies: 7
    Last Post: 03-06-2010, 07:51 PM
  3. What is the most stable base?
    By DaraX in forum Help
    Replies: 15
    Last Post: 11-25-2009, 07:20 PM
  4. Most stable base?
    By RequaUK in forum RS2 Server
    Replies: 27
    Last Post: 05-21-2008, 06:46 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
  •