Jump to content

Bin4ry

Members
  • Posts

    782
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Bin4ry

  1. It's fixed like I tried, go get to source snippet by Rytech http://rathena.org/board/tracker/issue-6438-tetra-vortex-black-image/
  2. I'm testing the source right now, gimme 5 mins Edit: It works very well! No need of client hexing already.
  3. // http://rathena.org/board/topic/72912-request-reward-npc-for-active-players/ - script 50Reward -1,{ OnPCLoginEvent: if ($50claimed >= 50) { debugmes "50 rewards all given, please disable the script."; end; } if (50claimed < 601) { attachnpctimer ""+strcharinfo(0)+""; initnpctimer; } end; OnTimer60000: set 50claimed, 50claimed + 1; if(50claimed == 600){ getitem 7539,1 dispbottom "Congratulations!"; set $50claimed, $50claimed + 1; set 50claimed, 601; } stopnpctimer; initnpctimer; end; } Now it does not check AFK and allow the counts continue.
  4. *Until you spend your time to raise a creator in kRO*
  5. 04-10 navigation is hardcored, use 05-15 if you want a translatable navigation windows.
  6. In status.c, line 5086. Find: if( sc->data[sC_DEFENDER] ) speed = max(speed, 200); Remove whole block or change the speed calculation. Then re-compile.
  7. // http://rathena.org/board/topic/72912-request-reward-npc-for-active-players/ - script 50Reward -1,{ OnPCLoginEvent: if ($50claimed >= 50) { debugmes "50 rewards all given, please disable the script."; end; } if (50claimed == 0) { attachnpctimer ""+strcharinfo(0)+""; initnpctimer; } end; OnTimer30000: if(checkvending() >= 1 || checkchatting() == 1) { stopnpctimer; end; } getmapxy( .@map$, .@x, .@y, 0 ); if(@map$ == .@map$ && @x == .@x && @y == .@y) { set @afk, @afk + 1; } else { set @afk, 0; } set @map$, .@map$; set @x, .@x; set @y, .@y; if (@afk == 5) { stopnpctimer; end; } end; OnTimer60000: set @minute, @minute + 1; if(@minute == 600){ set @minute,0; getitem 7539,1 dispbottom "Congratulations!"; set $50claimed, $50claimed + 1; set 50claimed, 1; } stopnpctimer; initnpctimer; end; }
  8. Use my script with Annie's little fix and on group.conf: groups: ( { id: 1 ... permissions: { ... can_trade: false } }, Only change permission, don't replace whole group block.
  9. The damage snippet only check if Left Hand Empty, maybe when I get home I shall add another check for shield.
  10. Show us how you added the check mapflag snippet by QQ.
  11. His name is Winz, Stapo is a forum titile according to your post rank.
  12. For damage reduction, you can try this in battle.c: case GS_DESPERADO: struct item *it = &sd->status.inventory[sd->equip_index[EQI_HAND_L]]; if ( !it ) { // Left Hand Empty skillratio += 40*(skill_lv-1); break; } skillratio += 50*(skill_lv-1); break;
  13. Yes like I said, kRO (data.grf) and RagRE (rdata.grf)
  14. Spiderweb doesn't have any ground specific element in src, I think is safe to change the value in skill_db to make it target instead ground skill.
  15. Not sure if novice die will their EXP return to 0?
  16. Required shall able be change in skill_require db and for damage reduction you need a add a check right hand flag and damage reduce in battle.c
  17. Weird. It uses permanent variables define account lock status. My guess is ur variable exceed to server default limit which is 64 per character.
  18. RagRE party window can create party ;P
  19. My guess is either outdated party table or incorrect packet db.
  20. Miruku is a repack of updated kRO and RagRE. Which is 100% original and not modified.
×
×
  • Create New...