Jump to content

Angelmelody

Members
  • Content Count

    772
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by Angelmelody

  1. http://herc.ws/board/blog/17/entry-66-woe-setter-script-pre-release-eng-no-spa-atm/
  2. you can add an option 255 for switch(prompt(.. Case 255: end;
  3. these are docs of iro class server hope it help... data.7z
  4. maybe your skill level was 5 @skill.c // lv 1 & 2 = Strip Helm, lv 3 = Strip Armor, lv 4 = Strip Weapon and lv 5 = Strip Accessory. [malufett]
  5. you can use mapannounce after warp player to the mining map mapannounce "guild_vs2", "wellcome ".+rid2name( $@warpwaitingpc[0] )+"....blah blah blah...", 0;
  6. yes i did. btw thanks but what if i want to add a prize.. where should i put it yes i did. btw thanks but what if i want to add a prize.. where should i put it Do you mean add new mining reward ? // Minerals setarray .mineral[0], 1010, 1011, 984, 985, 501; // Phracon, Emveretarcon, Oridecon, Elunium setarray .amount[0], 5, 3, 1, 1, 1; // Amount to mine // Success rate: (x / y)% chance setarray .success[0], 1, 5, // 1/5 (20%) 1, 2, // 1/2 (50%) 4, 5, // 4/5 (80%) 1, 50, // 1/50 (2%) 3, 5; // 3/5 (60%)
  7. For example : The success chance of item 984 was setted to 80%, actually the range of if(rand(1, .@range) != .success[.@target * 2]) was total 5 elements(1~5) , The if condition go rand 5 elements not equal to 1 element judged to failure change. So the failure change is 4/5 and success chance is 1/5 not satisfying our setting 80% success chance . Hope you can understand my broken Eng
  8. I don't think the original formula is correct if(rand(1, .@range) != .success[.@target * 2]) should change to if(rand(1, .@range) > .success[.@target * 2])
  9. setarray .mineral[0], 25106, 1011, 984, 985; // Phracon, Emveretarcon, Oridecon, Elunium // Success rate: (x / y)% chance setarray .success[0], 1, 5, // 1/5 (20%) -->25106 1, 2, // 1/2 (50%) -->1011 4, 5, // 4/5 (80%) -->984 1, 50; // 1/50 (2%) -->985
  10. you need add costume event by your self like this http://www.eathena.ws/board/index.php?showtopic=274088&start=0&p=1503318entry1503318
  11. try *mobcount mobcount("<map name>","OnMobKilled")
  12. try this [button:Register ] Default='images/Reg1.png' OnHover='images/Reg2.png' OnDown='images/Reg3.png' Left= x-coordinate Top= y-coordinate Mode=1 Action='http://www.your-regist-page....'
  13. for svn .svnwc.db for git .gitrefsremotesoriginmaster you can also specify version by manunal srccommoncore.c svn ---> static char svn_version_buffer[16] = "13617"; git ---> static char HerculesGitHash[41] = "1f1930c0e3d2bb928d9fc9a39f360815daf77e8f";//Sha(40) + 1
  14. I hope Bank will pay me interest every month/day
  15. like this topic but It wasn't compatible with 2013-08-07 ragexe client http://rathena.org/board/topic/90062-shiftright-click-autofollow/ I m using 20130807 client now,but Idk how to figure out that hex code, Can anyone help me ?,thank you in advance.
  16. http://herc.ws/board/files/file/52-luadec-for-lua-514-a-easy-and-super-powerful-lub-lua-decompiler/
  17. As I remember , cell_basilica no longer functions since 13106 , instead of it was sc_basilica you can add it back by manual battle.c inside function int battle_check_target find //Alliance state takes precedence over enemy one. else if( state&BCT_ENEMY && strip_enemy && state&(BCT_SELF|BCT_PARTY|BCT_GUILD) ) state&=~BCT_ENEMY; and add after if ( map->getcell( src->m, src->x, src->y, CELL_CHKBASILICA ) || map->getcell( target->m, target->x, target->y, CELL_CHKBASILICA ) || map->getcell( s_bl->m, s_bl->x, s_bl->y, CELL_CHKBASILICA ) || map->getcell( t_bl->m, t_bl->x, t_bl->y, CELL_CHKBASILICA ) ) state &= ~BCT_ENEMY;
  18. hmm so diffing this really makes the client crash? Use Custom Aura crashes client has been reported as a bug in this thread ,but Shakto didn't fix it yet , Don't diff with that option atm, or change to another diff tool NEMO - Client Patcher, that bug should be fixed.
  19. The safe max storage is 731 explained by Ai4rei http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4391&&st=20
  20. for example http://pastebin.com/raw.php?i=ym87DzmE - script tabbecspace -1,{ ---> char tab change to space also happens with bb code - script tabbecspace -1,{
  21. It seems the New 3rd job sprite from Jro
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.