Jump to content

michaelsoftman

Members
  • Posts

    410
  • Joined

  • Last visited

Everything posted by michaelsoftman

  1. ResetTheHotKey is a function in an lua file. Basically, your LUA files and your client date do not match.
  2. Uhh, why is this in scripting? And go read the wiki please.
  3. Are you using Thor patcher? In the configs, you just set the .exe name.
  4. As far as I know, that would require some type of source edit.
  5. Try removing them from /system/Towninfo.lua
  6. FluxCP is supposed to do that. If you want them to use the same DB, just edit Flux's settings to be the same as RO's, and use the same database.
  7. What kind of errors? Sprite errors? Did you also change accname.lua?
  8. You forgot a comma, change it to this. 21115,New_White_Fairy_Wings,white fairy wings,5,100000,50000,0,100,40,,1,0xFFFFFFFF,1,2,1,,,1,,{ bonus bAllStats,20; },{},{}
  9. I'd like to know more about it, because from the videos and screens you can't really tell if it's a huge difference from RO or not. Maybe show us some of the knight's skills? Or explain a feature, like town economy?
  10. Post the item script you have for that item, it looks like you just forgot the } at the end.
  11. EDIT: Fixed my own problem. I have to use item_data.nameid instead of id.
  12. Honestly, best way is word of mouth. You get someone to join, who has friends, who has other friends, etc etc... There's no real place to advertise your server cept RO sites, and gaming sites like said already.
  13. To me, it just looks like your character creation window doesn't have a background. Maybe you're missing that file?
  14. So, you want a skill that changes a character's class for a certain amount of time, then back to the original class?
  15. Go to line 970 and see what's wrong. If anything, you missed a comma somewhere.
  16. You have to install PDO. The command varies depending on what type of server you're running. Example: http://stackoverflow.com/questions/2320644/how-do-i-enable-pdo-using-centos
  17. Do you use TortoiseSVN? Go to your rathena folder, right click > SVN Update. Should be no conflicts if all you have are custom NPCs.
  18. Try this out. I haven't had time to test it though. function script partysoul { set @partyname$, strcharinfo(1); set .@i, 2000000; while ( .@i < 2010000 ) { if ( .@i % 500 == 0 ) sleep 20; if ( attachrid(.@i) ) { if( strcharinfo(1) == @partyname$ ) { switch ( basejob ) { case Job_Alchemist: set .@spirit, 445; break; case Job_Monk: set .@spirit, 447; break; case Job_Star_Gladiator: set .@spirit, 448; break; case Job_Sage: set .@spirit, 449; break; case Job_Crusader: set .@spirit, 450; break; case Job_SuperNovice: set .@spirit, 451; break; case Job_Knight: set .@spirit, 452; break; case Job_Wizard: set .@spirit, 453; break; case Job_Priest: set .@spirit, 454; break; case Job_Bard: case Job_Dancer: set .@spirit, 455; break; case Job_Rogue: set .@spirit, 456; break; case Job_Assassin: set .@spirit, 457; break; case Job_Blacksmith: set .@spirit, 458; break; case Job_Hunter: set .@spirit, 460; break; case Job_Soul_Linker: set .@spirit, 461; break; default: if ( upper == 1 && baselevel < 70 ) set .@spirit, 494; } if ( .@spirit ) { sc_start4 sc_spirit, 300000, 5, .@spirit,0,0; skilleffect .@spirit, 5; delitem 21224, 1; // change this to your item } } } set .@i, .@i +1; end; } }
  19. The most stable, up to date client is 2012 / 04 / 10a I think. http://supportmii.com/ro1/Clients/Judas_Setups/2012_Setup/
  20. Really simply, those errors are from out of date LUA files. You need to find the versions for your client.
  21. If you want to compile rAthena, all you have to do is download the most recent SVN, transfer it to your VPS, edit the client date in mmo.h, then run the compile command. Usually I run it as ./configure && make clean && make sql In mmo.h, you change this line. #define PACKETVER 20120410 You just change the number. It goes Year-month-day. So 20120410 is 04 / 10 / 2012. So after you change that number to whatever your client is, you run the command, it'll compile, and then you can start / stop or do whatever you'd like with your server.
  22. Well, do you know how to actually compile rAthena? It's not difficult at all. And changing it for your client date is literally one number changed. It's much much better than using a pre-compiled release. The one you pointed to is 14 revisions behind current.
  23. Do you have any edits to the actual eathena source you're using? If not, just download and compile the latest rAthena version. Then replace it, clean, configure, and compile it on your VPS, then run it like normal. You will have to use rAthena's SQL files though. There are extra fields in the tables not in eAthena. Easiest way is to just wipe EVERYTHING and install rAthena. But if you want to keep what you have, it'll take a lot more work.
×
×
  • Create New...