Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. Wrong section. Moved to "Source Support".
  2. .LastJob = false; // Enforce linear class changes? set to true. Wrong section. Moved to "Scripting Support".
  3. Wrong section. Moved to "Client-side Support"
  4. Emistry

    Auto Heal

    i think this might work.. itemID,........., { autobonus "{ percentheal(10, 0); }",10,1000; }, {}, {}
  5. you're using renewal item_db in a pre-re setting server? Wrong section. Moved to "Database Support".
  6. Wrong section. Moved to "Database Support".
  7. etc, kindly use the search toolbar for common questions.
  8. client side npc/mob identity lua file are messed up check mob_avail.txt check any script that transform sohee into flag
  9. Wrong section. Moved to "Source Support". ensure your battle_config.transcendent_status_points has value? trace where else it altered the statuspoint ? If its an NPC script, you could easily alter the status point from there. if (Class == Job_Swordman) { StatusPoint += 10000; }
  10. In my point of view, this topic look just like a normal diary or your daily log rather than a project. Not interesting at all as it doesn't look like a project to everyone.
  11. you cant change the text unless you know how to hex the client.
  12. that's just a basic pvp warper npc... with some simple trick to summon monster for drops. https://pastebin.com/JrGgGtFM for class restriction, it pretty much depend how you gonna control it tho .. it isn't included in the script, same for chicken chicken dinner ? for others, kindly refrain from posting non-useful comments as this is support/request forum.
  13. prontera,155,181,5 script Sample 4_F_KAFRA1, { atcommand "@allskills"; atcommand "@allstats 99"; end; }
  14. that's just a normal shop in rathena. doc/script_commands.txt#L278-L292
  15. autoloot doesn't auto loot the item that create by script. it only loot item that dropped by monster.
  16. Wrong section. Moved to "Client-side Support"
  17. https://rathena.org/board/topic/115672-online-login-background-problem/
  18. split to mark as answer instead.
  19. to split and marked as answer instead.
  20. there wont be much help in your case if you unable to provide the source codes. everyone can just tell you what might goes wrong, and you have to figure out yourself then. everyone are most likely just blindly guessing what wrong with your theme. else pm the theme author to fix it.
  21. prontera,155,181,5 script Sample 4_F_KAFRA1,{ .@eqi = select(.eqi_menu$); mes "it cost "+F_InsertComma(.cost[.@option])+" Zeny"; if (getequipid(.eqi_list[.@eqi]) <= 0) { mes "you didnt have any equipment there."; } else if (Zeny < .cost[.@option]) { } else { .@option = select("refine", "derefine"); Zeny -= .cost[.@option]; if (.@option == 1) { successrefitem .eqi_list[.@eqi]; } else { downrefitem .eqi_list[.@eqi]; } mes "done."; } close; OnInit: setarray .cost, 10000, // refine 100000; // de-refine setarray .eqi_list, EQI_HEAD_TOP, EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_GARMENT, EQI_SHOES; .@size = getarraysize(.eqi_list); for (.@i = 0; .@i < .@size; .@i++) .eqi_menu$ = .eqi_menu$ + F_getpositionname(.eqi_list[.@i]) + ":"; end; }
  22. - script sample -1,{ OnPCLoginEvent: if (getgmlevel() >= 90 && (gettime(DT_HOUR) >= 10 && gettime(DT_HOUR) <= 20)) { // 10am ~ 8pm atcommand "@kick "+strcharinfo(0); } end; }
  23. your credential to connect to the database are not correct, make sure you provide the correct username/password.
×
×
  • Create New...