Jump to content

MyNoobScriptz

Members
  • Posts

    75
  • Joined

  • Last visited

Everything posted by MyNoobScriptz

  1. Hello, As the title, how can I force pet turn into egg? And then delete egg ? Like example : 1. Player talk to this npc.. then this NPC will turn his pet into egg. 2. After turn the pet into egg, npc will delete his egg and giving the item as reward or give other egg as reward.
  2. how to reload battleground.yml like reload script or reloaditemdb ?
  3. thank you!! but possible to change gm control and put name of guild member to register please
  4. Hi rathena i need npc register guild and guild member can access to map thx
  5. can you share some example script like you comment, please
  6. //REDUCE HP PLAYER OUT OF ZONE prontera,1,1,1 script AutoReduceHP HIDDEN_NPC,{ end; OnTimer2000: .@percent = -30; .@size = getareaunits(BL_PC,"prontera",145,83,164,69,.@aid); if (.@size > 0) { for (.@i = 0; .@i < .@size; .@i++) { if (attachrid(.@aid[.@i])) { if (Hp <= MaxHp) { specialeffect2 107; percentheal .@percent, .@percent; if (Hp < 5) { warp "SavePoint",0,0; } } detachrid; } } } initnpctimer; end; OnInit: initnpctimer; end; } hi rathena i have script from rathena, but i need to convert script if player out of area hp - 30 % every 2 second can anyone help me please
  7. Hi, how to count player in map PvP (pvp_y_1-2) 1. if count = 20 get 10 Yggdrasil Berry 2. if count = 10 get 5 Yggdrasil Berry I use OnPCDieEvent sometime script can't run to next step. because some player has left by using Alt+F4
  8. I have questions about skill TF_DOUBLE, how to increase damage TF_DOUBLE on item script i write script "bonus2 bSkillAtk,"TF_DOUBLE",15;" not works.
  9. Thx it's work!! , if i need to increase 1 cell per skill to 2 cell or 5 cell how i do this ?
  10. Thank you. How to move my topic to source support , or you know how to do with source modification , any idea
  11. HOW TO SCRIPT : Grants immunity to White Imprison except self casting.
  12. how to use ground skill from mob A to mob B (1 time per cells) EX : mob A position 100,100 and mob B position 105,105, I need to use ground skill (something like Thunder storm) from 100,100 -> 101,101 -> 102,102 -> 103,103 -> 104,104 -> 105,105 if mob B change position 95,95 skill calculate to coordinates 95,95
  13. This code is old idk, but i need anyone update this code for latest rathena please help me!!
  14. how to combine anti bot and macro detector script, after killed mob around 500-1000 then user get macro detector
  15. thank you , how can i change your antibot system to check by https://github.com/rathena/rathena/pull/7315 and https://github.com/rathena/rathena/pull/7359 i mean under line check: how to use script macro detector to player
  16. Initial implementation of the goldpc timer by Lemongrass3110 · Pull Request #7410 · rathena/rathena (github.com) i need to add check player idle time 5 min then discount goldpc points , if player active again goldpc points will count normaly thx for advance
  17. Quest.cpp if (this->nodeExists(node, "Drops")) { const auto& drops = node["Drops"]; for (const auto& dropNode : drops) { uint32 mob_id = 0; // Can be 0 which means all monsters if (this->nodeExists(dropNode, "Mob")) { std::string mob_name; Quest_db.yml # Drops: Quest item drop targets. (Default: null) # - Mob Monster to kill. 0 will apply to all monsters. (Default: 0) # Item Item to drop. # Count Amount of items that will drop. Non-stackable items default to 1. (Default: 1) # Rate Item drop rate. (10000 = 100%) - Id: 2000 Title: Jellopykiller Drops: - Mob: 0 Item: Jellopy Rate: 1500 Does anyone know how to make all monster drop Jellopy while being quest? DOC : say 0 will apply to all monsters. (Default: 0), But got error
  18. Please Update to rAthena current Version
  19. Hi rathena, i need script to check player with macro detect 1.Every 30 min sent macro detect to player 2.Sent only player action on dungeon and fields Thx in advance ?
  20. hi rAthena, i need npc to exchange item like this 1 Yggdrasilberry 2 Seed_Of_Yggdrasil 3 Leaf_Of_Yggdrasil to 1 Yggdrasilberry_Box_ item require count = 5 of 3 item ex. Yggdrasilberry 2, Seed_Of_Yggdrasil 2, Leaf_Of_Yggdrasil 1 = Yggdrasilberry_Box_ ex2. Yggdrasilberry 1, Seed_Of_Yggdrasil 3, Leaf_Of_Yggdrasil 1 = Yggdrasilberry_Box_
  21. SDE Link : https://rathena.org/board/files/file/3269-server-database-editor/
  22. my monster is set hp to 10 and ignore all type attack try use skill 10 hit but only get 1 hit after this still miss miss!!!
×
×
  • Create New...