Thread: Proselythe - 317 w/ 667 data

Page 1 of 9 123 ... LastLast
Results 1 to 10 of 83
  1. #1 Proselythe - 317 w/ 667 data 
    oof


    Join Date
    Aug 2012
    Posts
    3,150
    Thanks given
    2,847
    Thanks received
    857
    Rep Power
    2260
    Before I start doing any major server-sided work I thought I'd just release my client to make a tiny contribution before I started working on my server. I'll also be including the source i'm using since there's a few things that needed to be done server-sided. This was made in eclipse so there's no batch files for compiling and running the server

    Implemented Features

    This list contains all of the features that I've added from the start of my project, and also my progress.

    Code:
    Repacked 525 maps and objects
    Tweening
    667 Items
    667 Animations
    667 GFX
    667 Characters
    614 NPCs (Stupid but can't seem to get 667 to work)
    602 dialogue chat heads
    Applied animations to all weapons
    Correct target slots for all items
    Clan chat with clan setup interfaces
    XP counter and toggling
    Player shadows
    Added curse prayers
    New HP bar and hit icons
    Implemented a sound system, still working on applying those sounds to actions.
    New spell animation/gfx configuration for new animations/gfx
    NPC Definitions through XML
    NPC Spawns through XML
    Not a lot of media

    Spoiler for Media:












    LINKS

    Server: Netty Source
    Client: Refactored Client


    Server compiler:

    Code:
    @echo off
    title Compiler 
    javac -classpath deps/jython.jar;deps/log4j-1.2.15.jar;deps/mysql.jar;deps/netty.jar;deps/poi.jar;deps/slf4j-nop.jar;deps/slf4j.jar;deps/xstream.jar; -d bin src\server\*.java src\server\clip\*.java src\server\clip\region\*.java src\server\content\skill\*.java src\server\entity\npcs\*.java src\server\entity\player\*.java src\server\entity\player\music\*.java src\server\entity\player\packets\*.java src\server\entity\player\packets\action\*.java src\server\entity\player\skills\*.java src\server\entity\player\sounds\*.java src\server\event\*.java src\server\model\items\*.java src\server\model\minigames\*.java src\server\model\objects\*.java src\server\net\*.java src\server\net\login\*.java src\server\task\*.java src\server\util\*.java src\server\util\log\*.java src\server\world\*.java src\server\world\shops\*.java 
    pause
    Server launch

    Code:
    @echo off
    title Launching Server
    java -Xmx1024m -cp bin;deps/jython.jar;deps/log4j-1.2.15.jar;deps/mysql.jar;deps/netty.jar;deps/poi.jar;deps/slf4j-nop.jar;deps/slf4j.jar;deps/xstream.jar; server.Server
    pause
    Client compiler:

    Code:
    @echo off
    Title Compiling
    javac -cp bin -d bin src/*.java src/sign/*.java
    pause

    Client launch:

    Code:
    @echo off
    title Proselythe
    cd bin
    java -Xmx300m client 10 0 highmem members 32
    pause


    The client has the cache folder in it

    FIXING THE BLACK CLIENT ISSUE:
    http://www.rune-server.org/runescape...ml#post4659013

    For those who even care about my project (), i will continue development on this to either make a better server release or maybe end up hosting if I find time to

    Credits:

    View Profile: Wolfs Darker - Rune-Server for the fading backgrounds
    View Profile: Revil - Rune-Server for maps
    Reply With Quote  
     

  2. Thankful users:


  3. #2  
    Registered Member
    Join Date
    Jul 2014
    Posts
    134
    Thanks given
    1
    Thanks received
    9
    Rep Power
    14
    What source did you start with?
    Reply With Quote  
     

  4. #3  
    oof


    Join Date
    Aug 2012
    Posts
    3,150
    Thanks given
    2,847
    Thanks received
    857
    Rep Power
    2260
    Quote Originally Posted by RuneSide View Post
    What source did you start with?
    Forgot but it was some netty pi release
    Reply With Quote  
     

  5. #4  
    Registered Member
    Join Date
    Jul 2014
    Posts
    134
    Thanks given
    1
    Thanks received
    9
    Rep Power
    14
    Quote Originally Posted by Vesia View Post
    Forgot but it was some netty pi release
    Decent blank release, starting a new project with it.
    Reply With Quote  
     

  6. Thankful user:


  7. #5  
    oof


    Join Date
    Aug 2012
    Posts
    3,150
    Thanks given
    2,847
    Thanks received
    857
    Rep Power
    2260
    Quote Originally Posted by RuneSide View Post
    Decent blank release, starting a new project with it.
    Good luck
    Reply With Quote  
     

  8. #6  
    Respected Member

    Revil's Avatar
    Join Date
    Nov 2010
    Age
    30
    Posts
    4,860
    Thanks given
    3,715
    Thanks received
    2,228
    Rep Power
    5000
    Good work bro. Might check this out later.
    Reply With Quote  
     

  9. Thankful user:


  10. #7  
    Registered Member
    Join Date
    Aug 2014
    Posts
    5
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    How would i rip the tweening from this? lol.
    Reply With Quote  
     

  11. #8  
    oof


    Join Date
    Aug 2012
    Posts
    3,150
    Thanks given
    2,847
    Thanks received
    857
    Rep Power
    2260
    Quote Originally Posted by AN0NNN View Post
    How would i rip the tweening from this? lol.
    start with interpolateFrames method
    Also take method101

    Ripping it is easy, should only take about 15 minutes


    Also I'll be making some batch files later today for those who don't use an IDE.
    Reply With Quote  
     

  12. #9  
    Registered Member Verisimilitude's Avatar
    Join Date
    Mar 2012
    Age
    26
    Posts
    487
    Thanks given
    45
    Thanks received
    17
    Rep Power
    0
    [spoil]
    Quote Originally Posted by Artorias View Post
    Before I start doing any major server-sided work I thought I'd just release my client to make a tiny contribution before I started working on my server. I'll also be including the source i'm using since there's a few things that needed to be done server-sided. This was made in eclipse so there's no batch files for compiling and running the server

    Implemented Features

    This list contains all of the features that I've added from the start of my project, and also my progress.

    Code:
    Repacked 525 maps and objects
    Tweening
    667 Items
    667 Animations
    667 GFX
    667 Characters
    614 NPCs (Stupid but can't seem to get 667 to work)
    602 dialogue chat heads
    Applied animations to all weapons
    Correct target slots for all items
    Clan chat with clan setup interfaces
    XP counter and toggling
    Player shadows
    Added curse prayers
    New HP bar and hit icons
    Implemented a sound system, still working on applying those sounds to actions.
    New spell animation/gfx configuration for new animations/gfx
    NPC Definitions through XML
    NPC Spawns through XML
    Not a lot of media

    Spoiler for Media:












    LINKS

    Server: Netty Source
    Client: Refactored Client

    The client has the cache folder in it

    For those who even care about my project (), i will continue development on this to either make a better server release or maybe end up hosting if I find time to

    Credits:

    View Profile: Wolfs Darker - Rune-Server for the fading backgrounds
    View Profile: Revil - Rune-Server for maps
    [/spoil]

    Hey, I've never downloaded a different client before without the source. I was wondering,
    is there a way to use your client for my source or I just have to use the source you provided?
    [spoil][/spoil]
    Code:
    [Today 05:35 AM] Verisimilitude: My new siggy
    [Today 05:34 AM] Verisimilitude: Ikr
    [Today 05:34 AM] a Kitty: 'there is litteraly nothing i can do to reach him, so i will just stand here and accept my fate'

    Reply With Quote  
     

  13. #10  
    oof


    Join Date
    Aug 2012
    Posts
    3,150
    Thanks given
    2,847
    Thanks received
    857
    Rep Power
    2260
    Quote Originally Posted by Verisimilitude View Post

    Hey, I've never downloaded a different client before without the source. I was wondering,
    is there a way to use your client for my source or I just have to use the source you provided?

    you can use your source but I suggest not
    Reply With Quote  
     

Page 1 of 9 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: 68
    Last Post: 02-17-2016, 10:30 PM
  2. Replies: 10
    Last Post: 10-20-2013, 01:00 AM
  3. Replies: 9
    Last Post: 09-14-2013, 02:19 AM
  4. Replies: 27
    Last Post: 08-09-2013, 03:26 AM
  5. Replies: 11
    Last Post: 12-19-2012, 09:04 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
  •