Need Help Please *Event-Engine*

Results 1 to 4 of 4
  1. #1
    Account Upgraded | Title Enabled! Falke34 is offline
    MemberRank
    Aug 2013 Join Date
    Saxony/GermanyLocation
    241Posts

    Need Help Please *Event-Engine*

    I will make *Event-Engine* to work with AL-Reload but i have many Errors when i compile the Game

    Orginal: https://github.com/f14shm4n/aion-event-engine

    Attachment: my Event-Engine Patch File
    Attached Files Attached Files


  2. #2
    Member Wandi Budiana is offline
    MemberRank
    Oct 2013 Join Date
    BandungLocation
    61Posts

    Re: Need Help Please *Event-Engine*

    can you tell me how to test the script is working or not.
    https://www.dropbox.com/s/ykkmby9dzogvxqq/AL-Game.7z

  3. #3
    Account Upgraded | Title Enabled! Falke34 is offline
    MemberRank
    Aug 2013 Join Date
    Saxony/GermanyLocation
    241Posts

    Re: Need Help Please *Event-Engine*

    Thank you

    in TimeUtil.java - Time Format not correct - Compile Error
    Code:
        public static String convertToString(int[] hms) {
            if (hms[0] > 0) {
                return String.format("h% s% s% s to m.", hms[0], hms[1], hms[2]);
            }
            if (hms[1] > 0) {
                return String.format("%s м. %s с.", hms[1], hms[2]);
            }
            return String.format("%s с.", hms[2]);

    This working (compiling without errors) but is this correct?
    Code:
        public static String convertToString(int[] hms) {
            if (hms[0] > 0) {
                return String.format("h% s% s% s to m.", hms[0], hms[1], hms[2]);
            }
            if (hms[1] > 0) {
                return String.format("%s %s", hms[1], hms[2]);
            }
            return String.format("%s", hms[2]);
    Please can you make a .patch file?

    Any errors on start:
    Attached Thumbnails Attached Thumbnails sshot-1.png   sshot-2.png  
    Last edited by Falke34; 19-05-14 at 10:31 AM.

  4. #4
    Member Wandi Budiana is offline
    MemberRank
    Oct 2013 Join Date
    BandungLocation
    61Posts

    Re: Need Help Please *Event-Engine*

    I use this files from this thread http://forum.ragezone.com/f587/relea...-4-3-a-981273/ without source.

    i don't know why i can't clean up my source and i have to make new one, after use your patch.
    Last edited by Wandi Budiana; 20-05-14 at 09:05 PM.



Advertisement