From 887c6aa2bceab609f9d12b64c86e3991be11d576 Mon Sep 17 00:00:00 2001 From: ThrisStraizo <45871917+ThrisStraizo@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:21:14 -0800 Subject: [PATCH] Roc/Simurgh draw in adjustment This PR adjusts the draw in parameters to more closely resemble retail while removing problematic spawn locations for Roc. --- scripts/zones/Rolanberry_Fields/mobs/Simurgh.lua | 2 +- scripts/zones/Sauromugue_Champaign/mobs/Roc.lua | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/zones/Rolanberry_Fields/mobs/Simurgh.lua b/scripts/zones/Rolanberry_Fields/mobs/Simurgh.lua index d1a2007e7e7..a9087e91f02 100644 --- a/scripts/zones/Rolanberry_Fields/mobs/Simurgh.lua +++ b/scripts/zones/Rolanberry_Fields/mobs/Simurgh.lua @@ -93,7 +93,7 @@ entity.onMobFight = function(mob, target) position = mob:getPos(), offset = 5, degrees = 180, - wait = 3, + wait = 10, } utils.drawIn(target, drawInTable) end diff --git a/scripts/zones/Sauromugue_Champaign/mobs/Roc.lua b/scripts/zones/Sauromugue_Champaign/mobs/Roc.lua index d40e80a9e58..7e6864e0e08 100644 --- a/scripts/zones/Sauromugue_Champaign/mobs/Roc.lua +++ b/scripts/zones/Sauromugue_Champaign/mobs/Roc.lua @@ -29,8 +29,6 @@ entity.spawnPoints = { x = 188.566, y = -1.168, z = -296.794 }, { x = 215.711, y = 0.404, z = -312.421 }, { x = 212.596, y = -0.216, z = -249.303 }, - { x = 189.023, y = 0.348, z = -196.885 }, - { x = 195.192, y = -0.067, z = -194.328 }, { x = 199.956, y = 0.000, z = -278.615 }, { x = 191.796, y = 0.263, z = -250.968 } } @@ -61,9 +59,9 @@ entity.onMobFight = function(mob, target) target:checkDistance(mob) > mob:getMeleeRange(target), }, position = mob:getPos(), - offset = 10, + offset = 5, degrees = 180, - wait = 15, + wait = 10, } utils.drawIn(target, drawInTable) end