Jump to content

JoWei

Members
  • Posts

    117
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by JoWei

  1. @Secrets Thanks for the feedback, I haven't had time to tweak it further but I'll be working on the colors further in the next few weeks. I am not quite satisfied with the current colors as a whole yet. @randell1993 Glad you enjoyed!
  2. Hi everyone, Since I haven't seen anyone create a package for atom yet, I figured this might be something interesting to make for everyone. So, here it is, a package for Atom to support the scripting language. You can find the package in the package manager of Atom. Enjoy! If there is any questions, feel free to ask here. If any issues is found, report them here https://github.com/JoWei/language-athena/issues
  3. Gee, brings back so many memories watching the series. Thanks for the release and also nice work to both of you mappers!
  4. The problem lies in your exp table, seeing how you made the switch from eAthena which used exp table with required exp 10 time less than rAthena's on some levels. For example the trans classes: As you can see the required exp for level 101 on eAthena's on the left is about 10 time lower than rAthena's on the right. It is most likely why your exp gain is lower than usual after the switch.
  5. Hmm... forgot there was the upgrade SQL files. Easier and faster than the steps I used.
  6. Well, it's quite simple to convert 1) backup your database 2) look for backup script 3) edit backup file, you should find "level" in the definition of create table for `login`, change all "level" in the `login` table create/insert for "group_id" 4) create a new database 5) run rAthena's "main.sql" 6) run your backup script (the one you edited) you should then be set to go and start using rAthena. As for the settings, there's one in the source at https://rathena.svn....onfig/renewal.h just comment anything you don't want. That should be it. Edit: added answer for second question and added for information for step 3
  7. I'll use red potion as an example, insert that script into your custom item at <Custom item ID>,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ if(baseJob==Job_Dancer || baseJob==Job_Bard){}else{ atcommand "@changesex"; } },{},{}
  8. Misread at first, I don't even think the conditions are neccessary due to the fact that rAthena doesn't seem to crash when changing sex on bard or dancer but anyhow here's the script: if(baseJob==Job_Dancer || baseJob==Job_Bard){}else{ atcommand "@changesex"; } Edit: added requested script
  9. Make sure you have diffed the client with SkipPacketHeaderObfuscation. Without it the emulator wont be able to recognize the packets sent by the client.
  10. +1 It will open so many other possibilities like confirmation message on purchase in cashshop, announcement or any other kind of notices.
  11. Nice mod, thanks! I'll be testing it out when I get the chance!
  12. Just add your items in https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/item_db2.txt This shouldn't conflict with any further updates except for structure changes which shouldn't happen anytime soon.
  13. JoWei

    Ctrl + V

    Cours 3, 30 Octobre 2012
  14. It doesnt work because you put .PVP_EXP[0] in string. This should work: query_sql("UPDATE `char` SET `pvp_exp` = `pvp_exp`+"+.PVP_EXP[0]+" WHERE `char_id` = '"+getcharid(0)+"' ");
  15. I'm not quite sure what you mean by "using variable(setarray)". Can you try to explain it more?
  16. Try using this: query_sql("UPDATE `char` SET `pvp_exp` = `pvp_exp`+100 WHERE `char_id` = '"+getcharid(0)+"' ");
  17. From your screenshot, you're trying to run a bat file which is used by Windows. I've never ran a server on Linux but from memory you have to run SH scripts for Linux which in this case should be athena-start. Someone else correct me if I'm wrong.
  18. Oh, never noticed since I always used the "/organize" way when creating a party. Thanks for the info. Back on topic, it might be then because of wrong date lua files used.
  19. Did you use the in game command "/organize "Party name""? Unless there was another way to create a party, that's the one way I could think of. Note that if you create a party with spaces inside the name, you must put the party name between quotes or it error out. If the above fail, which client date are you using?
×
×
  • Create New...