Jump to content

Magnetix

Members
  • Posts

    446
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Magnetix

  1. try using this script - script antibot -1,{ OnPCLoginEvent: if(getgmlevel() == 99) end; atcommand "@option 2"; mes "Please Red Colour Key in the Code..."; set .Code,rand(1000,99999); mes "^0000FF"+rand(1,9999)+"^FF0000"+.Code+"^0000FF"+rand(1,9999)+"^000000"; input @Code; if( @Code != .Code ) { atcommand "@kick "+strcharinfo(0); end; } atcommand "@option 0"; end; }
  2. when using OR (||) when one condition is met, it will execute your code even if the other condition is false.. use this instead... prontera,146,304,5 script Reseter 407,{ set .name$, "[Reseter]"; if (BaseLevel <= 20) { mes .name$; mes "Reset Stat & Skills will cost you 5,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (Zeny >= 5000) { set Zeny, Zeny - 5000; callfunc "Reset1"; } // End if } else if (BaseLevel > 20 && BaseLevel <= 40) { mes .name$; mes "Reset Stat & Skills will cost you 2x Premium Reset Stone and 10,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 2) goto noitem; if (Zeny >= 10000) { set Zeny, Zeny - 10000; callfunc "Reset1"; } // End if } else if (BaseLevel > 40 && BaseLevel <= 80) { mes .name$; mes "Reset Stat & Skills will cost you 3x Premium Reset Stone and 100,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 3) goto noitem; if (Zeny >= 100000) { set Zeny, Zeny - 100000; callfunc "Reset1"; } // End if } else if (BaseLevel > 80) { mes .name$; mes "Reset Stat & Skills will cost you 5x Premium Reset Stone and 10,000,000z want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 5) goto noitem; if (Zeny >= 10000000) { set Zeny, Zeny - 10000000; callfunc "Reset1"; } // End if } // End if close; noitem: mes "[Reseter Manager]"; mes "You dont have enough [Premium Reset Stone].."; close; } // End script function script Reset1 { ResetStatus; ResetSkill; return; } // End function
  3. did you just switch from rA to eA? from what I can tell rAthena already dropped txt-server... why do you have those on your window?
  4. as far as I can remember job changers got a condition wherein a player can't proceed if he still has unused skillpoints.
  5. mob_skill_db.txt can be found in two directories if your server is Renewal then db > re if not db > pre-re
  6. I already posted the fix, any way use this script prontera,146,304,5 script Reseter 407,{ set .name$, "[Reseter]"; if (BaseLevel <= 20) { mes .name$; mes "Reset Stat & Skills will cost you 5,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (Zeny >= 5000) { set Zeny, Zeny - 5000; callfunc "Reset1"; } // End if } else if (BaseLevel > 20 || BaseLevel <= 40) { mes .name$; mes "Reset Stat & Skills will cost you 2x Premium Reset Stone and 10,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 2) goto noitem; if (Zeny >= 10000) { set Zeny, Zeny - 10000; callfunc "Reset1"; } // End if } else if (BaseLevel > 40 || BaseLevel <= 80) { mes .name$; mes "Reset Stat & Skills will cost you 3x Premium Reset Stone and 100,000z, want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 3) goto noitem; if (Zeny >= 100000) { set Zeny, Zeny - 100000; callfunc "Reset1"; } // End if } else if (BaseLevel > 80) { mes .name$; mes "Reset Stat & Skills will cost you 5x Premium Reset Stone and 10,000,000z want it to reset?"; next; if (select("Yes:No") == 2) close; if (countitem(6320) < 5) goto noitem; if (Zeny >= 10000000) { set Zeny, Zeny - 10000000; callfunc "Reset1"; } // End if } // End if close; noitem: mes "[Reseter Manager]"; mes "You dont have enough [Premium Reset Stone].."; close; } // End script function script Reset1 { ResetStatus; ResetSkill; return; } // End function
  7. third line should be like this if (BaseLevel <= 20) {
  8. both IP setup on map_athena and char_athena should be like this: char_athena map_athena
  9. It might be he already installed MySQL Server but forgot to turn the instance ON. Anyone can tell me which application uses the 4th icon (from right to left) on his taskbar? Looks like some sql stuff.
  10. Teh drop rates varies from monster to monster. You already mentioned that items drop on different rates depending on how they were set on mob_db. What the other server owners are doing, including myself, we base our rates on the items that we think has the highest importance. Let's say raydric card or cards and items that has .01% chance to drop. Then this becomes the factor that will decide the server's drop rates. Using your current rates, if you're normal or boss cards has the same rates setting them to 500000 will make raydric cards drop at 50% while cards/items that has a base drop chance of .1 and above will automatically become 100%. That is why there are a lot of servers that has used the word 'custom' to represent rates.
  11. Leave monster.conf on its default settings and just import your settings to monster_conf.txt. See if this will solve the issue.
  12. If you use Akbare's exp_homun.txt, then the max level for all of your homunculus' will be 999. Why? How would you/i know the max level aside from what was stated in the comment? Well, the one he posted has 1004 lines, minus the 5 lines in the beginning which are basically comments. So 1004 - 5 = 999 If you ADD 1 more line, let's say 5000000000 then max level will become 1000.
  13. Only eAthena and 3CeAM are using 'Level' and rAthena now uses Group_id.
  14. It seems your Lua Files are at fault. Make sure your packetver (mmo.h) is of the same date with your client AND lua files. For example: #define PACKETVER 20121221 (Dec. 21, 2012) then RagexeRE.exe should be 2012-12-21xRagexeRE.exe AND your Lua Files should have the same patch date
  15. First and foremost using root is not recommended. You should create new sql user(s) instead.
  16. For more information, you can use this information (all members should know how to use the wiki) http://rathena.org/wiki/Category:Configuration#Setting_Drop_rates
  17. Magnetix

    exp.txt

    Search for these lines /src/map/battle.c { "max_lv", &battle_config.max_lv, 99, 0, 150, change to { "max_lv", &battle_config.max_lv, 99, 0, 1000, /src/map/map.h #define MAX_LEVEL 150 change to #define MAX_LEVEL 1000
  18. What I do is backup and delete cp_xxxxx from my db and install/update everything. That should work.
  19. You mentioned that when you migrated to linux, you added new mods. Try to remove that mod first, see if it'll fix the problem.
  20. Make sure when you diff you enabled read data folder, OR if you already packed your xml to your server's grf, make sure you set DATA.INI.
  21. What you must do is import logs.sql to your ragnarok database. If you did ngek202's advice, then create a new schema(log) and import logs.sql to the newly created schema.
  22. It seems the paws is not at fault. I tried using eathena r15074 who also has paws but it seems there are no delays.
  23. since you're using no-ip. instead of using your Wan IP, use the no-ip address.
  24. but it is an event, right? should test it later when I get home.
  25. Magnetix

    question,Info

    It is, but 1 of the rules is to post our topics on their proper sections. And that topic may become useful one day, easier to find.
×
×
  • Create New...