Jump to content

YaibaToKen

Members
  • Posts

    68
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by YaibaToKen

  1. 6 hours ago, Shaddura said:

    #Worth

    Wish Granted. You now know what you want to wish for! But you'll forget by the time it's your turn to wish again.

    I wish I could write in C# without needing help or quality assurance from others.

    Granted but you'll never use that sort of skills for Aura.

    I wish my work contract gets approved soon.

  2. 7 minutes ago, Thunderbro said:

    Wish granted, but the code quality goes downhill.

    I wish for a feature complete Aura.

    Wish granted, but it's buggy and unwieldy, with customization being nearly non-existant.

    I wish I had my own fuel efficient, unbreakable, four-wheeled, speedy, maintenance-free, ecological, five-seater car.

  3. 10 minutes ago, exec said:

    Granted, but just as it's completely set up a natural disaster destroys it all.

    I wish I'd never be late for a project log again.

    Granted, but you'll always be in constant stress, as all types of clocks and watches seem to go crazy when gazed at by you, not knowing how close to the "deadline" you truly are, dreading every moment.

    I wish I could afford a second monitor, supporting 1080p resolutions.

  4. 35 minutes ago, exec said:

    It's scary how accurately you've described parts of my life where I did work on some of my projects every waking moment out of obligation to the community xD

    Sadly I know the feeling, although not to that extent. Eventually you learn to accept that you're only obligated to contribute as long as you feel like it.

    13 minutes ago, Thunderbro said:

    Granted, but there are now less days in a week.

    I wish for a sequel to Sonic Mania.

    Granted, but it's an utter piece of unplayable crap, incapable of running on even the most sophisticated computers.

    I wish I could afford a decently equipped computer/server lab.

  5. Oh woow, not sure I even introduced myself in the old forums, but here it goes. Name's Bruno, 24yo, Portuguese, trying to get a degree in Informatics and Computer Engineering.
    Started programming back when I was 15yo, fell in love with it. Also love tinkering with hardware. Really like building tools and little bits of software to ease more monotonous and time consuming tasks (like say generate scripts for all the Pet Whistles in Mabinogi, or even writing hunting quests for Mabinogi's mobs).

    In case someone's interested: https://www.16personalities.com/infp-personality

    As for Exec's criticism, I find it helped me grow as a programmer, by knowing what I'm doing wrong or could do better, understanding what a client could complain or request and so on. Not to mention, keeping the codebase clean and unified makes for an easier experience when attempting to understand the existing systems.

  6. On 9/21/2018 at 4:40 PM, Thunderbro said:

    Wish granted, but you're going to be paid minimum wage.

    I wish to finish my homework.

    Granted, but you'll be to tired to do anything else and end up in a vicious cycle where all you do is homework.

    I wish I could fund Exec's work on Aura full-time.

  7. On 9/10/2018 at 10:22 AM, exec said:

    Granted, but it's so advanced that it's incompatible to each and every program and game out there.

    I wish I had more time for my open-source projects.

    Granted but you'll lose all motivation to work on them whilst being forced to spend every waking moment improving them, and every second of sleep being plagued with nightmares over the unmanageable expectations and needs of said projects.

    I wish my work contract gets aproved.

  8. 20 hours ago, Miro said:

    Granted, but there will be a solar flare which wipes out all computers.

    I wish for more sun like the past few weeks in the netherlands :)

    Granted, but the same solar flare that wipes out all computers also burns down the Netherlands to a crisp, turning it into The Nether.

    I wish I could afford moving out of my parent's house

  9. 7 hours ago, xeroplz said:

    @YaibaToKen wishes that he actually typed a wish on his last post.

    Granted, but it will become part of my post.

    I wish for Harambe the Gorilla to come back to us -_- RIP

    Ouch, thanks, didnt even notice.

    Granted, she comes back as a zombie and dies of starvation, everyone with a brain is currently staying at home, working on Aura ;)

    I wish I mastered all programming languages.

  10. On 21/06/2016 at 6:20 PM, Yumiser said:

    Granted
    But the whole place goes up in flames the next day, you are the only survivor.

     

     

    I wish for a kitten

    Granted but the lil kitten turned out to be a world eater.

    I wish I got paid according to my performance at work

  11. 8 hours ago, exec said:

    That's an implementation detail of the browser though, just because the popular browsers handle paths doesn't necessarily mean the WebClient class does as well^^ Though it is very likely using IE behind the scenes... but still!

    (*looks at LaMe source code* Wow, I don't remember writing a single line of this...)

    well IE has been handling it for ages now xD and it's kind of the standard for the minimum reqs for a browser nowadays, so I did indeed assume things xD but yeah, I think in most languages you can handle a path the same way as an url as longs as the path directs to the local machine ;) don't quote me on that though

  12. 25 minutes ago, exec said:

    I thought it obvious that LaMe has to go into the Mabi folder, my bad. The difference I meant on the first quote was that you shouldn't use your local path, but just "client.exe", because that's all it takes when you run LaMe from the Mabi folder, and that's the only way it will work for others who might have Mabi in a different folder.

    That the path worked for the URL surprises me, but it's good to know.

    The web server can serve files, it already does so with the hotkeys and the visual chat.

    https://github.com/aura-project/aura/blob/master/src/WebServer/WebServer.cs#L101

    The folder "user/public/" is set as static folder, so whatever you put in there will be accessible through "http://localhost/user/web/public/...".

    Well, that should solve my problem for delivering the files to the users. I didn't know how to use the webserver for that, now I know :) thanks exec, you rule!

    A reminder that a path and an url are the same for the local machine, when accessed through a browser. The browser will simply show the file tree for the directory. Since what LaMe does is simply access the directory the path works because it's location was accessible in my machine.

  13. 4 hours ago, exec said:
    
    ; File name of the client executable
    ; e.g. client.exe
    Exe = C:\Nexon\Library\mabinogi\appdata\Client.exe

    Compare the example to your value, what's the difference?^^

    
    ; Url to the folder containing the list and packages
    ; e.g. http://localhost/packages
    Url = C:/Users/YaibaToKen/Downloads/Games/Mabinogi/LaMe_1.0.0a/Packages/

    Again, pay close attention to the example. What LaMe wants here is not the path to your folder, but an HTTP address where it can download the packages, like the one in the example, if you had a web server running on port 80 with a "packages" sub-folder.

    When I ran LaMe, it downloaded the package files for a subfolder called packages in it's root dir. As for the difference in the client name, most likely the letter case, but the file name is indeed in UpperCase. I guess I should just ask it straight out. Is LaMe supposed to be estracted to Mabi's root folder?

    EDIT1: So I placed the files inside Mabinogi's root folder and ran it and it worked... Turns out that was the step I was missing. As for the package files URL, I know I will have to change that to a proper URL but for local use it works.

    EDIT2: Does the webserver supplied as a part of aura provide any way to send files for LaMe atm? While I know programming and stuff, servers were never my strong suit, though I'm looking to change that.

  14. Just to let everyone know that an interface is in the works and whoever is interested can check it out by compiling and running the current code :)

    Also if anyone has experience or knowledge about JScrollablePanes, I could use some help. Also need to figure out droplists and CardLayouts, after those I should be done with the interface for the foreseeable future and will focus on adding the remaining rewards, objectives and prerequisites, followed by a possible load feature.

  15. 18 hours ago, RisingGale said:

    thats illegal and if caught you'd get banned or worse (the worse that could happen is like 1 out out 10,000 chances of happening)

    As far as I'm aware, the most they can actually do, is ban you. Last I checked, using a vpn or a proxy itself isn't illegal.
    Good thing I don't even need that for the game though, but yeah, been playing for the last 2 years using the tweaker. If they wanted to ban you they'd do it.

    Don't worry much bout it, nearly a fourth of their player base is outside of japan, doubt they'll want to lose that many users ;)

  16. While that looks interesting, that would fall somewhere under client modding, I assume. Though I'm not sure, wasn't there an option for that in the client settings?

  17. Looking through the quests folder I noticed how boring it can get if you want to make several quests, specially if they're similar, as you'd have to copy the same code over and over with just slight changes. Seeking to change that I figured I might as well write an app to do that for me. You'd simply tell the app the specifics of the quest, for example, if it's a hunting quest, you'd say hunt monster X, Y times and so on, and the app would generate the code surrounding, based on rewards and prerequisites you specify.

    I have currently implemented the base code for all of this, and missing the UI. Also need to finish implementing reward types, objective types and prerequisite types.
    Several other small changes will also have to be made eventually.

    You can check the current code here and if anyone is willing to help, pull requests are more than welcome. A side note, if anyone would like coding a interface for the app I'd be extremely grateful and available for anything needed.

    This might also prove usefull for the team if they ever need to implement several new hunting quests or even for the "missing" fomor scroll quests.

    The rewards missing atm are Skills, Skill training and Stat bonuses.
    All prerequisites have yet to be implemented and am currently working on implementing objective types.

    I'd love to know how everyone feels about the use of the tool and what you'd like to see in it.

    UPDATE 22-03-2016:
    We now have a webpage (thanks to gitub ;)) for the tool. It's still in need of proper info and, well, construction, but here it is.

    UPDATE 23-03-2016:
    Started a small changelog on the official webpage. Note that I will always keep watch over this thread nonetheless.

    • Like 5
×
×
  • Create New...