Jump to content

Nameless2you

Retired Staff
  • Content Count

    735
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Nameless2you

  1. 212 downloads

  2. File Name: Bakuen File Submitter: Nameless2you File Submitted: 13 Nov 2015 File Category: Sprites & Palettes Click here to download this file
  3. This looks awesome! Keep it up, hope to see more great stuff being released by you!
  4. This can't be official, MVPs teleport in official if trapped and attacked, or if attacked and don't have clear sight to attacker.
  5. I agree and disagree. If we remove it cool and all but we'll get 2x or 3x as many "give me healer script that make buff" or "make job changer that take jellopy to change"
  6. Not the best idea depending on where you store your data. Do you store the data server side or on the same server as your website? The former being the better choice for latency. Best might be to host it with the same host, different vps models, that way the latency is low, and chances that both have issues at the same time is low unless they're within the same rack and the rack goes down, be it for maintenance or other reasons. In the end it really matters what you intend to invest, nowadays that isn't all that much thanks to competition.
  7. I like your idea. Don't see any good argument to keeping the inactive/active state at the moment. And maybe make checkquest() an alias of questprogress().
  8. You can also get a vps for your website, the only difference from that and your server will be the size required and therefore the cost. But if you really only want a "webhost" try your domain name provider, they usually offer this service as well.
  9. You can do stuff like A good script to look at is https://github.com/HerculesWS/Hercules/blob/b791b665c87589548c9c57afbe0fe50ec7c32676/npc/custom/jobmaster.txt and always remember the good old documentation: https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt
  10. root (very bad for you) <~~ that force Hercules to run as root? Any other work around for that? Create a new user, assign the files inside the hercules directory to that specific user. Alternatively you can create a new user, create a new group, add the user to that group and change the group of the hercules directory. The commands needed for this would be: useradd, chgrp, chown, possibly also chmod.
  11. This is a pretty decent tutorial on how to do about it: http://www.shayanderson.com/linux/add-startup-script-or-service-with-linux-on-bootup.htm
  12. You'd have to write your own script for autorestarting it. Just do a while loop and check fi the process is still running, if not restart it, kind of thing. And it already runs on linux, so what exactly do you mean by "as linux service"?
  13. How do you know the other statistics are true? I could just make a dummy db and give you the information "gathered" from that one.
  14. My suggestion for you is get users to post the stats of their servers to a page such as www.yourolist.com/api where you can make a parser that gets the information from there, in json format. More power on their side, less intrusive. This would also make it open for others to use it. yay usability, yay freedom of information.
  15. Sounds currently like you're only targeting Windows users. ugh :| Also even with you saying that it's only "very light" data usage I wouldn't want to ever give such access to another website. Parse the # of users online from the site itself, if it exists. The web panel for the "start/stop/restart" is nice, but really only for people that haven't worked with RO emulation much yet, the beginners.
  16. Nobody is perfect, s'long as we're informed that you've contributed we can add it. Added here: https://github.com/HerculesWS/Hercules/commit/3ca5e3c72b5a66cfe485a0b87ea823f94ded8bb1
  17. Nameless2you

    @Woe

    Please provide more detail, such as the npc you're using (with link or code) and maybe what your configuration was.
  18. In fact it's limited to 2 billion index max : since the script engine use integer (and not unsigned integer) to store variables and numbers. But still a great improvement eh? Where do you see the signed int part? A bit of searching for "max_arraysize" brought me to script.h #define SCRIPT_MAX_ARRAYSIZE (UINT_MAX - 1) Looks like an unsigned int to me. script.h imports cbasetypes.h which has #define UINT_MAX 0xffffffff Which is: 4294967295
  19. Just do mes "[Apprentice Craftsman]";mes "Quite of an adventurer huh? Well, shall we?";specialeffect2 EF_MAPPILLAR;if(countitem(7227) < 50 || countitem(6242) < 1){ mes "[Apprentice Craftsman]"; mes "Sorry, You dont have the requirements.";}close;
  20. 1. the script doesn't show up anymore for some reason, thankfully I was still looking at it and managed to copy paste it beforehand. -> http://upaste.me/188133 copied version 2. Not addressing the issue you have but, mes "[Apprentice Craftsman]"; mes "Quite of an adventurer huh? Well, shall we?"; close2; specialeffect2 EF_MAPPILLAR; if(countitem(7227) < 50 || countitem(6242) < 1){ mes "[Apprentice Craftsman]"; mes "Sorry, You dont have the requirements."; close; } Why do you use close2; and close? close2 closes the window but keeps the character attached, and continues with the script.. so if the character has 50 or more TCG cards and 1 or more midgard coins he'll be stuck at that point.
  21. Added. Link'u Missing the names annie said Left out KeyWorld & Seventh, can't find commits by either of them. Not going to get involved into who gets added so I'll just go by what I could find. Link'u
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.