Jump to content

Euphy

Members
  • Posts

    2997
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Euphy

  1. http://rathena.org/board/topic/59786-maintenance-command/#entry83265
  2. There are still some problems with it: 1. Almost all of the comments /* */ you removed now have double-spaces between scripts. 2. Why did you change this? - `defence` smallint(5) unsigned default NULL, + `defence` smallint(5) NULL default NULL, 3. A few other questions/mistakes, from skimming the file: Should not uncomment an item named "????_???". -# REPLACE INTO `item_db_re` VALUES (7804,'????_???','????_???',3,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (7804,'????_???','????_???',3,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); You commented these lines, why? Also, misplaced "#" line in first +. -REPLACE INTO `item_db_re` VALUES (12392,'Repair_A','Repair A',0,220,NULL,70,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,'/* madoheal rand(200,300),0; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12393,'Repair_B','Repair B',0,500,NULL,70,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,'/* madoheal rand(300,400),0; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12394,'Repair_C','Repair C',0,1100,NULL,70,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,'/* madoheal rand(400,500),0; */',NULL,NULL); +# REPLACE INTO `item_db_re` VALUES (12392,'Repair_A','Repair A',0,220,NULL,70,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,#' madoheal rand(200,300),0; ',NULL,NULL); +# REPLACE INTO `item_db_re` VALUES (12393,'Repair_B','Repair B',0,500,NULL,70,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,' madoheal rand(300,400),0; ',NULL,NULL); +# REPLACE INTO `item_db_re` VALUES (12394,'Repair_C','Repair C',0,1100,NULL,70,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,' madoheal rand(400,500),0; ',NULL,NULL); Do you have the pre-re and txt databases done as well?
  3. If you were to remove the "readme" directory, the installation guides (and other guides?) could simply be added into "doc". They'd be more visible that way, in any case.
  4. @deimler: That's the 'job' parameter in item database entries. Read more here: http://rathena.org/wiki/Custom_Items
  5. Maki, weren't you making a Tyranitar sprite ages ago? :>
  6. Yup, I get errors too.
  7. Scripts with more features: http://www.eathena.ws/board/index.php?showtopic=231474 http://www.eathena.ws/board/anti-obscenity-andand-Anti-Flood-BroadCaster-t205241.html
  8. There are plenty of reasons to have offline copies to work with, though (ex. on a laptop without wifi, or if the wiki is ever offline). The files aren't out of date; there just isn't much information in them. It's no big deal to update them once a month.
  9. I think "modifier" is more suitable than "penalty" since there are values over 100. Here's the very slightly edited file: // Experience & Drop Rate Modifier Database // // Structure of Database: // Type,Race,Level difference,Rate // // TYPE: // 1=experience, 2=item drop // RACE: // 0=Formless, 1=Undead, 2=Brute, 3=Plant, 4=Insect, // 5=Fish, 6=Demon, 7=Demi-Human, 8=Angel, 9=Dragon, // 10=Boss monsters, 11=Normal monsters // // Note: RENEWAL_DROP and/or RENEWAL_EXP must be enabled. // EXP modifiers due to level difference 1,11,16,40 1,11,15,115 1,11,14,120 1,11,13,125 1,11,12,130 1,11,11,135 1,11,10,140 1,11,9,135 1,11,8,130 1,11,7,125 1,11,6,120 1,11,5,115 1,11,4,110 1,11,3,105 1,11,0,100 1,11,11,100 1,11,-6,95 1,11,-11,90 1,11,-16,85 1,11,-21,60 1,11,-26,35 1,11,-31,10 // Boss Type 1,10,0,100 // Drop rate modifiers due to level difference 2,11,16,50 2,11,13,60 2,11,10,70 2,11,7,80 2,11,4,90 2,11,0,100 2,11,-4,90 2,11,-7,80 2,11,-10,70 2,11,-13,60 2,11,-16,50 // Boss Type 2,10,0,100
  10. Post your patch in the dev forums before any large update, so that others can look over it. If items give sprite errors, do not add them. If scripts don't work, don't uncomment them.
  11. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/script_commands.txt getpartymember, then loop through the array with attachrid.
  12. It's OnHour02, you're probably thinking OnClock. :>
  13. @Babylonian: It's not possible to save hotkeys, and saving equipment with my script would be inefficient (it'd require an SQL table and the 'equip' command, not too difficult to implement). Emistry has a script that saves skills as well: http://rathena.org/board/files/file/2550-doppelganger/ For a delete option, add another menu option/case: set .@Build, Get_Menu(.@BuildCount); if (getd("Build_"+.@Build+"$")=="") { message strcharinfo(0),"No build info found."; close; } setd "Build_"+.@Build+"$",""; setd "Build_"+.@Build+"n$",""; message strcharinfo(0),"Build "+.@Build+" deleted."; close;
  14. @Babylonian: It's Job_SuperNovice, make sure you get the constants correct. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/const.txt
  15. Updated DDL for Miruku: http://rathena.org/board/topic/70753-miruku-07-09-2012-7th-september-2012/
  16. The fix isn't difficult - just change the "donpcevent" label names. I think my controller is better, but of course that's a biased opinion xD.
  17. If we release compilations, less people will stay updated. It's not like it takes much time to compile a server, so I disagree as well.
  18. Euphy

    ^^;

    Welcome! You can find a more updated copy/direct download of Miruku here, uploaded by one of our users: http://rathena.org/board/topic/70753-miruku-07-09-2012-7th-september-2012/
  19. It's a script. http://rathena.org/wiki/Adding_a_Script
  20. From... who? If a group other than 'admin' has the permission, remove it from conf\groups.conf; if you want to remove it from the 'admin' group, you could do one of two things: Remove this permission: all_commands: true Then add all the commands you want admins to have manually. Use bindatcmd to block the two scripts: - script block_atcmd -1,{ OnInit: bindatcmd("item2",strnpcinfo(0)+"::OnBlock",99,99); bindatcmd("produce",strnpcinfo(0)+"::OnBlock",99,99); end; OnBlock: message strcharinfo(0),"This command is disabled."; end; }
  21. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/skill_tree.txt Reduce the max level of ASC_EDP: 4065,378, >> 2 << ,407,1,0,0,0,0,0,0,0,0 //ASC_EDP#Deadly Poison Enchantment#
  22. @Babylonian: I'm not sure about adding that as an official feature, but it's very easy to do. After the line: jobchange .@i; Add: switch(.@i){ case Job_Swordman: getitem 1108,1; getitem 2104,1; break; case Job_Mage: getitem 1605,1; getitem 2102,1; break; case Job_Archer: getitem 1708,1; getitem 12008,1; break; case Job_Acolyte: getitem 1504,1; getitem 2104,1; break; case Job_Merchant: getitem 1301,1; break; case Job_Thief: getitem 1211,1; getitem 2104,1; break; // etc. default: break; } @uDe: Any script with "eAthena" in the header works on eAthena; the rest don't. I've released eA-compatible scripts on the eAthena forums, though: http://eathena.ws/forum/forum/32-script-releases/
  23. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/quests/quests_13_1.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/quests/quests_13_2.txt NPCs manukrock and manukrock2, plus their duplicates.
  24. Yeah, 2~3 / 10 is close enough to 15~30 / 100. :>
  25. Spre fixed it in r16794, please use the bug tracker to report bugs from now on. Thanks!
×
×
  • Create New...