Jump to content

botka4aet

Members
  • Posts

    211
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by botka4aet

  1. check woe controller and just copy script
  2. 2nd video - 1:30 Tower change direction - it's bad. I think that better change RO mob size and use it
  3. According your info - you must change system/iteminfo.lua You have apple 501. Just change apple description in this file. If nothing changes - client get info from another place(dunno how)
  4. check items here Job_Changing: mes .npcname$; mes "You are now a part of ^FF0000"+jobname(getarg(0))+"^000000.";
  5. You put lua in your grf with highest priority? Also check your current items at server side. If you have item with 2000001 - 100% client side problem. If you don't - well, you somehow broke item command.
  6. https://github.com/rathena/rathena/wiki/Custom-Mobs
  7. Well, you can have 100 gb base and it doesn't affect cpu in any way.
  8. Remove + 2 * (sstatus->dex - tstatus->dex) It will ignore your and target dex
  9. change config file and locate pre-re file
  10. https://github.com/rathena/rathena/blob/0b8d80ba63afa5484c606466987107dc4e5b0b0e/conf/atcommands.yml#L168
  11. You store logs in txt file? 2021 year?
  12. Dude, if problems at sever side - there are only 3 emulator exe(login, map, char) and sql If problems at client side... Well, picklog is not a reason
  13. Show your skill_db and skill_tree
  14. No, it's not so easy: autospell - active skill, that add status. And if status active - you'll get autoskill But you need check - if you learned skill
  15. github.com/rathena/rathena/blob/master/src/map/battle.cpp SC_AUTOSPELL - autospell from sage Just do same way
  16. Like asura to overpowered for woe - you can lower dmg or add cap for it. Or lower % for freeze Increase cd for frostjoke. Only 4 traps for traper Reason - make all jobs playable for WoE.
  17. add script Something like this if getmapxy(map,tx,ty) !=0 close; If x0<tx<x1 and y0<ty<y1 - potion effect else getitem id,1; - return used item
  18. https://rathena.org/board/topic/61408-php-simple-rathena-status-script/
  19. if ( . @ map $ == "guild_vs1" && (BaseLevel <85 || BaseLevel> 115)) {
  20. quiz_02,238,379,5 script Healer NPC 811{ IF (getmapxy (" quiz_02 ", 237,378) != 0) { mes "-You too far from NPC and can't talk-"; close; } .cell = getareausers(" quiz_02 ", 237,378, 237,378); if(.cell > 1) { mes "wait a second, there's two of you standing on front of me"; close2; warp ( "quiz_02", 246,376 ) } else{ specialeffect2 EF_HEAL2; percentheal 100,100; close2; sleep2 60000; IF (getmapxy (" quiz_02 ", 237,378) = 0) { warp quiz_02 246,376; } } end; }
×
×
  • Create New...