Jump to content

Mystery

Members
  • Posts

    2192
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Mystery

  1. Try installing a clean SQL tables.. start from scratch and then add in the last_mac column. I believe that column is Harmony's. So, you can also refer to their installation guide for support.
  2. Checkout a clean SVN from rAthena, refer to this post already: http://rathena.org/board/topic/69245-latest-svn-compilation/#entry129201 Or, check out Judas' forums: http://supportmii.com/board/index.php?/forum/18-svn-compilation-releases-trunkstable/
  3. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/ Very first file.
  4. As stated throughout this topic: http://rathena.org/board/topic/66079-2012-06-18aragexere-packet-db/page__st__120#entry121316 No one has it unless you rip it from kRO. Create one yourself by naming a file called shadowtable.lua and put dummy data in it.
  5. Note: This is the pre-re skill_cast_db https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/pre-re/skill_cast_db.txt // Structure of Database: // SkillID,CastingTime,AfterCastActDelay,AfterCastWalkDelay,Duration1,Duration2,Cool Down //-- CR_ACIDDEMONSTRATION 490,1000,1000,0,0,0,0 Change it accordingly.
  6. You install the table given in your SQL db.. o_O? Where you have your other SQL tables.
  7. Don't add the GroupID formation in eAthena.. you'd probably end up breaking the coding. If you want the GroupID formation.. drop eAthena and switch to rAthena.
  8. 1) No 2) No 3) : // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). 909 is the item ID, 100 is the rate.. which in this case will be 1x - 1000 will be 10x etc. and then 1002 is the monster. So, for your case, set this properly for GTB. // Overrides for global item_rate* values from conf/battle/drops.conf // Database format: // ItemID,Ratio{,MonsterID} Doesn't matter what your configurations are in the drops.conf because this specific file will overwrite it.
  9. Theres this very simple Renter already: https://rathena.svn....tom/breeder.txt (Universal) Or this one that would work: https://rathena.svn....nts/renters.txt (Just for the paladin coding) Or you could specifically look at this specific coding: // Grand PecoPeco Breeder (for Crusaders)------------------------------------------- prontera,232,318,3 script Peco Peco Breeder#cru 105,{ if(Upper==0) set .@price,3500; //Normal Peco - default price if(Upper==1) set .@price,3500; //Armored Peco if(Upper==2) set .@price,3500; //Baby Peco mes "[PecoPeco Breeder]"; if (BaseJob == Job_Crusader && Class < Job_Rune_Knight) { if(Upper != 1 ) mes "Welcome, Crusader."; else mes "Welcome, Paladin."; mes "We have a special"; mes "Peco Peco prepared"; mes "for you. To rent one"; mes "will cost "+.@price+" zeny."; next; switch(select("Rent a PecoPeco:Quit")) { case 1: if (zeny < .@price) { mes "[Peco Peco Breeder]"; mes "You do not"; mes "have enough zeny."; mes "If you would like"; mes "a Peco Peco please"; mes "bring "+.@price+" zeny..."; close; } else if(getskilllv("KN_RIDING") == 0) { mes "[Peco Peco Breeder]"; mes "You must first learn"; mes "to ride a PecoPeco before"; mes "I can rent one to you."; close; } else if(checkriding()) { mes "[Peco Peco Breeder]"; mes "You are already"; mes "mounted on a Peco Peco."; close; } else if(ismounting()) { mes "[Peco Peco Breeder]"; mes "Please remove your cash mount."; close; } set zeny,zeny-.@price; setriding; close; case 2: mes "[PecoPeco Breeder]"; mes "See you around."; close; } } else { mes "What can I do for you?"; mes "Please be aware that"; mes "this Peco Peco rental"; mes "service is strictly for"; mes "Crusaders and Paladins."; close; } }
  10. It's meant like that to stop people to just download files.. TSR wants you to be a community member before just downloading any amount of downloads you wish. You have to contribute back to the community.
  11. Very simple: // Overrides for global item_rate* values from conf/battle/drops.conf // Database format: // ItemID,Ratio{,MonsterID} // Result: // ItemID base drop rates defined in mob_db will not get multiplied // by global item_rate* values (aka drop rates) from // conf/battle/drops.conf. Instead Ratio will be used (100 = 1x). // If no MonsterID is specified, all monsters will be affected, // otherwise only listed ones. // Examples: // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate). Follow the examples and you'll be fine, the last one in particular is what you're looking for.
  12. Mystery

    @go crash

    What do you mean? o_o
  13. I'll see what I can do to the script. Also, please note that if you are the one using commands to start and end the WoE, you're subject to corruption.
  14. Uh.. this is already activated in rAthena.. no need to do anything else other then customize your group.conf.. o_o Are you using eAthena?
  15. Just because he isn't posting doesn't mean he's not working on it ;P
  16. Added Banners D: Banners: The second banner is just a random name =/ I'll be creating different ones later tomorrow. Preferably, bigger size.
  17. !!! Jman is so cheating with the Rep :P!

  18. Mystery

    @go crash

    You edited help.txt? What did you edit ? Can we see what you've edited?
  19. What Euphy is suggesting.. is that you should try using progressbar within the item script of the fly wing and butterfly so that before you even teleport.. a progress bar will appear and will last for however many seconds and after those seconds are gone.. then you'll teleport. When you're casting the progressbar and if you get hit, you would have to recast it.
  20. You can refer back to my old post: http://rathena.org/board/topic/59606-cash-shop-button/
  21. http://irowiki.org/classic/Renewal
  22. Those cashshops are done through getting proper packets to support such a cashshop and the right client for it. I believe it's Sakray main clients that have those Cashshop buttons? But you'd need to get the packets to support that. And, no, rAthena does not have that.
  23. What do you wanna do greenieken? What do you want changed in the snippet above? o_o I don't really understand what you're trying to ask for changing with o_o
  24. // Change this to increase the table size in your mob_db to accomodate a larger mob database. // Be sure to note that IDs 4001 to 4048 are reserved for advanced/baby/expanded classes. // Notice that the last 1000 entries are used for player clones, so always set this to desired value +1000 #define MAX_MOB_DB 4000 https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/mob.h
×
×
  • Create New...