Jump to content

Akkarin

Forum Manager
  • Posts

    3147
  • Joined

  • Last visited

  • Days Won

    214

Everything posted by Akkarin

  1. The iRO wiki page gives you all the map locations for NPCs and all the item IDs involved in the quest. It shouldn't take much more than an hour to script this. You can use the script_commands.txt doc for help with creating an NPC, getting and deleting items and how to reward EXP. Since it's from 2014, i doubt anyone will have the official dialogue, so you may as well make it up as you go along.
  2. A quick way to do this without changing any of the source would be to overwrite the @go command using bindatcmd: - script atcmd_go -1,{ OnInit: bindatcmd "go",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: if(!getarraysize(.@atcmd_parameters$)) { message strcharinfo(0), "Invalid syntax."; end; } .@location = .@atcmd_parameters$[0]; if(.@location == 0){ if(BaseLevel < 100){ dispbottom "You need to be atleast Base Level 100 to go there!"; } else { atcommand "@go 0"; } } else { atcommand "@go "+ .@location; } end; } Tested and works on my localhost, you'd need to edit to add more if/else's if you want to restrict other locations.
  3. There's a floating rates NPC script already in the rA repo: https://github.com/rathena/rathena/blob/master/npc/custom/etc/floating_rates.txt Just change the OnHour labels to something else: OnClock<hour><minute>: OnMinute<minute>: OnHour<hour>: On<weekday><hour><minute>: OnDay<month><day>: This will execute when the server clock hits the specified date or time. Hours and minutes are given in military time. ('0105' will mean 01:05 AM). Weekdays are Sun,Mon,Tue,Wed,Thu,Fri,Sat. Months are 01 to 12, days are 01 to 31. Remember the zero. So You'd use OnFri0000: and then use OnMon0000: to set the specific rates back again.
  4. I guess it was too much to submit this as a pull request.
  5. Go to /home/mwsuranol/public_html/addons/vote_for_credits/modules/vote/index.php on line 7 and edit the path to the lib file.
  6. FluxCP has a re-install feature that should fix this.
  7. Welp: Access denied for user 'ragnarok'@'localhost' (using password: YES) 1.) Is your FluxCP being served from the VPS that hosts your rA server? 2.) Where in relation to your FluxCP is your MySQL server? 3.) Are you using Windows? 127.0.0.1 and localhost have different purposes. 4.) Does your MySQL user have access from localhost or 127.0.0.1 or from outside the local interfaces? 5.) If all the DB connection settings are correct in servers.php, then i would slightly modify the username to see if the new user is coming up in the logs. Just a hunch.
  8. I've split the topic to move your post into your own thread. Don't hijack someone elses, please. If you've setup the access credentials correctly within config/servers.php then you wouldn't be getting this error.
  9. For number 2, have you enabled md5 passwords in your rA settings but not in your FluxCP settings? For number 1, check in data/logs/errors/exceptions/
  10. It's an issue with your theme not outputting the values from the language file correctly, or you have modified the following config to something you don't have. 'DefaultLanguage' => 'en_us',
  11. Thanks guys
  12. Well.. the errors kinda tell you what's wrong.. You don't have the sprite in the correct folder.
  13. If you haven't specified any loading screens in your clientinfo.xml, i believe the client will load default-named images. So loader1.jpg would be incorrect, according to your initial post. https://rathena.org/wiki/Clientinfo.xml
  14. I know where they are in the client files, i asked which file/function/packet causes the message to be output via /src/.
  15. Can anyone find the line in /src/ that tells the client to display this (or the -not- alternative) on every map change? I'm probably just being blind and dumb
  16. It may well be "legit" in terms of "it has a website", but it's not an approved service on our end, and their site is using a nulled version of WHMCS. Also, i recall Dev Blaze being involved with other services that were rejected, but i can't find the topics with my current forum permissions. I advise you use an internationally recognised hosting company, like ovh or something.
  17. Akkarin

    Flux CP

    The character style? We can't see what page you're trying to view as you've blacked out the URL. You're also using the original FluxCP and not the rA supported version.
  18. Akkarin

    flux cp

    Correct, you should escape the backslashes for Windows systems. 'D:\\xamp\\etc'
  19. Welp, something is screwed because `birthdate` accepts 0000-00-00 as it's not-null default value: `birthdate` DATE NOT NULL DEFAULT '0000-00-00', I'm wondering if there's something within Windows that causes format discrepancies between dates, maybe it's something hardcoded? Dunno, it's a wild stab in the dark. Or rebuild your `login` table.
  20. I'm pretty sure that the account edit page has an input box for credits..
  21. An error message would be helpful. Have you tried to contact EADev?
  22. Why are your players browsing your website through your patcher? On the flip-side, it'd be a nice feature to have.
  23. Akkarin

    FluxCP Database

    They should all be in the same database. The fact they're in separate files has no relevance.
  24. Akkarin

    FluxCP Database

    FluxCP will read all of your server's db data, you shouldn't need to freshly import any data. That is, unless you're using txt item and mob files, in which you should consider moving to sql so your site data will always be uptodate with your server's data.
  25. Akkarin

    flux question

    https://github.com/rathena/FluxCP/blob/master/themes/default/header.php#L5 The header/title on facebook is in the title tag, the desc is in the meta description, if you don't have a meta description, throw one in after the head tag.
×
×
  • Create New...