Jump to content

Akkarin

Forum Manager
  • Posts

    3144
  • Joined

  • Last visited

  • Days Won

    212

Everything posted by Akkarin

  1. 1st, bumping is bad. Have a warning point. 2nd, the code isn't outside of the container. 3rd, I don't think you're fully understanding what you're looking at. The data isn't inside the divs where it needs to be, so you just need to fix that. Perhaps explaining what you're trying to do might help.
  2. https://github.com/rathena/rathena/wiki/Basic-Scripting https://github.com/rathena/rathena/wiki/Tips-and-Tricks https://raw.githubusercontent.com/rathena/rathena/master/doc/script_commands.txt
  3. The client can call openning.bik to play when the client is launched. As far as i understand there's no way of inserting any other kind of cinematics into the client to play at other times.
  4. Well done for not updating your thread stating you no longer have this issue.
  5. To remove the NPCs from the Pre-RE Novice area, you need to comment out a few lines in /npc/pre-re/jobs/novice/novice.txt. Some of the scripts are direct new_1-3 placements whereas others are duplicates. You'll just need to remove them.
  6. No - players need to join the instance via the instance script commands, otherwise they'd be @warp'ing themselves into the map without any of the instance scripts running.
  7. Without knowing your full situation, it's impossible for anyone to answer your question. rAthena doesn't just "hang", so it's possibly a resources issue, most likely you're running on a system with restricted CPU availability, or you're running out of RAM. Check those first, then provide more information.
  8. Looks like your msgstringtable is not correct for your client version. Also, ensure you're using the correct setting for client deletion - some clients expect specific packets. If i recall, the setting in char_athena.conf explains a little about this.
  9. Your post is so unhelpful. "R>Walking NPC" from where to where? You want the NPC you provided (should've been in a codeblock) to walk? Any particular route? Do you want it to just walk round in circles continuously? Do you want it to walk a few steps then stop for a few seconds? C'mon.
  10. <?php echo $this->url('pages', 'content', array('path' => 'rules')) ?> equates to <a href="?module=pages&action=content&path=rules">
  11. [email protected] or there's a link under "Supporting rA" in the navigation
  12. And for the third (and last) damned time this year, I've move the forums. We're now with a large reputable hosting company and I've shelled out some dollar so we can have excessive amounts of RAM, SSD's, unmetered traffic, the whole shabang. If I have to move our forums again this year i'll shoot myself. In the foot. With a grenade launcher. Enjoy the speed increase!
  13. A script like what..? All you've done is shown a screenshot of a menu. Being descriptive is key.
  14. The error tells you the line the problem is on. It's also telling you what the problem is.
  15. This week Google's Project Zero team reported a bug to CloudFlare pertaining to memory leaks within their parser software. What does this mean? In a nutshell, it means that various parts of a page could be cached with search engines that shouldn't be. This affected a large number of high profile websites across the internet. What data was leaked? CloudFlare estimate that 0.00003% of all page requests had the potential to disclose sensitive data in the http response. With the thousands of sites using CloudFlare all culminating to that 0.00003%, the risk of anything dangerous to you or this project being leaked is absurdly small. How does this affect rAthena? Generally speaking, it has low impact. The bug was identified in their parser chain for the email obfuscation, server-side excludes and automatic https rewrites, none of which we use but the html still goes through the parser regardless. What do we need to do? Firstly, stop worrying. If you want to change your password you can find this in your account setting. You could enable 2FA. Personally, I already have 2FA enabled for my forum account. You can read the full report from CloudFlare here.
  16. Yes, post on the forum for support from the community, not post on the forum and tag him to get his attention. If he's told you to post on the forum it should be quite clear that he's not going to help you himself at that moment in time.
  17. This post should serve as our official standpoint on the matter. It's not up for discussion. Anyone is able to register any domain they please. As it happens, the domain hercules.ws was registered because the previous owner of the domain let it expire. I've been told there was a sizable gap where anyone was free to register the domain. Let me make a few things clear. rAthena has no intention of causing strife between projects. People at either project are free to register any domain they see fit to register, for any purpose. This is the case for anyone on the planet who has the means to register a domain name. The registration of this domain has nothing to do with our project, it belongs to an individual. rAthena is not going out of it's way to generate problems. While people are under the impression that "free speech rules", the Staff at rAthena have always kept their personal feelings and opinions of Hercules and their project management style to themselves. To be quite honest, most of us don't care what they do and the Hercules project is of little interest to us. rAthena will not tolerate any further under-the-table discussions behind people's backs. Conversations directed to Aleos, myself, the Project Developers or the Forum Moderators should be going directly to the involved party and not messages passed along through other people. We don't care for drama. If you're asked to carry messages back and forth, please simply say no. We're all adult enough to contact each other should we feel the need to. There was once upon a time a news announcement on Herc's forums about them keeping their staff to themselves in terms of promoting an emulator, and expecting us to adhere to the same. We didn't need telling in the first place, we're not kids, it's common-sense. It's also a shame that certain members of their team are incapable of doing as they're directed. We haven't done anything about the chatter between the emu's before now, despite various infringements on our Forum Rules. We want no part in drama that members cause, be them from Hercules, RagEmu, RMS, Midgard-Community or anyone else. This is the first, and shall be the only time I type up a post like this. This post is locked. It doesn't require additional input or opinions. This is what we've done and what we'll continue to do, as a team.
  18. Can you please refrain from tagging specific forum members in a post requesting them to do things for you. If you have something that needs to be directed at a specific forum member, PM them.
  19. Nope - paypal has IPN support for both types of accounts so you don't need to change anything.
  20. AddPoint: PvPPoints = PvPPoints + (.added_points * $PVPPOINTSRATE); dispbottom "You've been awarded "+ (.added_points * $PVPPOINTSRATE) +" PvP Point."; Untested.
  21. Are you using the latest available FluxCP or are you using one that came with a theme/hosting service? The latter are all out of date and you should update your FluxCP to the version we manage on Github. Also, please don't hijack an old thread, your issues are different :/
  22. The sprite for the weapon tab is data/texture/À¯ÀúÀÎÅÍÆäÀ̽º/basic_interface/¹«±â-1.bmp
  23. Hint: Use On<time> labels to set a multiplier e.g. $PVPPointsRate and then add it to the code where the points are calculated: - script floatingpvp -1,{ $PVPPOINTSRATE = 1; OnMinute00: if (gettime(DT_DAYOFWEEK)==SATURDAY && gettime(DT_HOUR)==3){ $PVPPOINTSRATE = 5; } } Then your code would contain something like OnPCKillEvent: PVPPOINTS = PVPPOINTS + (1 * $PVPPOINTSRATE);
×
×
  • Create New...