-
Member
Is it possible to show Possessed monsters on the radar?
-
Active Member
Originally Posted by
Test505
Is it possible to show Possessed monsters on the radar?
Technically, probably. Same restriction as showing beasts tho, will require them to be within the same network bubble (~2 screens or so), so it's more or less useless.
-
Member
Originally Posted by
VioletVibes
Technically, probably. Same restriction as showing beasts tho, will require them to be within the same network bubble (~2 screens or so), so it's more or less useless.
Not useless, with the scarab sextant you can quickly find the right monsters
Last edited by Test505; 04-25-2023 at 01:09 PM.
-
Active Member
Originally Posted by
Test505
Not useless, with the scarab sextant you can quickly find the right monsters
Maybe, but I don't think it's worth the heat considering the heat it got during Archnemesis, so I doubt GH is planning on adding it (and afaik no other huds/tools offer it, maybe for the same reason
)
-
Originally Posted by
VioletVibes
Maybe, but I don't think it's worth the heat considering the heat it got during Archnemesis, so I doubt GH is planning on adding it (and afaik no other huds/tools offer it, maybe for the same reason

)
wait what is that? i am not aware of that tech.
If I did not reply to you, it mean the question you are asking is stupid.
-
Active Member
Originally Posted by
GameHelper
wait what is that? i am not aware of that tech.

Finding rare mobs with Archnemesis mods?
Look for MonsterModShakariTouched (or whatever Archnemesis mod you want) on ObjectMagicProperties and then mark it on Radar with a cake (or whatever indicator you'd like)
Last edited by VioletVibes; 04-25-2023 at 04:05 PM.
-
Originally Posted by
VioletVibes
Finding rare mobs with Archnemesis mods?
Look for MonsterModShakariTouched (or whatever Archnemesis mod you want) on ObjectMagicProperties and then mark it on Radar with a cake (or whatever indicator you'd like)

How does winged scarab sextant comes into the picture?
If I did not reply to you, it mean the question you are asking is stupid.
-
Member
just randomly stopped working for me right now, anyone else?
-
Member
Originally Posted by
redjay93
just randomly stopped working for me right now, anyone else?
i think it was just a bad layout on Port it didn't like and deactivated
-
Originally Posted by
redjay93
i think it was just a bad layout on Port it didn't like and deactivated
Please share error log for debugging/fixing purposes. Did restarting fixed it on that same map or u had to restart + change map in order to fix it.
If I did not reply to you, it mean the question you are asking is stupid.
-
Active Member
Originally Posted by
GameHelper
How does winged scarab sextant comes into the picture?
Ah, I assume they are referring to something like this, https://m.youtube.com/watch?v=bb7pMdpDFa4 and that being able to see the Archnemesis mobs would be helpful. :Shrug:
-
Member
Is it possible to somehow highlight altar tooltips? like divine drops of some big downsides etc
-
Active Member
Originally Posted by
Soiseiseki
Is it possible to somehow highlight altar tooltips? like divine drops of some big downsides etc
Poesmoother has a feature that does this. Unsure if it handles altar etc but it works for ie map mods and such.
-
Originally Posted by
VRita
It's been a month
I am working on it, will be fixed this weekend. It is not a month yet.
Last edited by GameHelper; 04-28-2023 at 08:22 AM.
If I did not reply to you, it mean the question you are asking is stupid.
-
Post Thanks / Like - 1 Thanks
VRita (1 members gave Thanks to GameHelper for this useful post)
-
Member
Tips for weapon swap.
There is a new way to do the weapon swap now, which is much easier than the old one which is based on MaxHP
Create 2 rule in AHK.
1. MonsterCount(MonsterRarity.Any) <= 0 & !PlayerSkillIsUseable.Contains("LeapSlam") & !IsKeyPressedForAction(2)
Condition Waits for 1 second. (It is better to set a wait time here to avoid swap the weapon too offen during the fight)
IsKeyPressedForAction(87) (I am using key "W" for moving skill)
So with the first rule, it means: when there is no monster around you and you cannot use LeapSlam and also you are not pressing Rbutton for more than 1 second, and you are also pressing "W" key now, then the rule will be true and it will press "X" to swap weapon.
2. PlayerSkillIsUseable.Contains("LeapSlam") & IsKeyPressedForAction(2)
So the second rule means: when you can use LeapSlam which means you are in the offset weapon, and also you are pressing RButton which means you want to fight. Then it will trigger weapon swap and auto press "X".
Additoanl function expected from GH. @GameHelper
Can we add a function which can input two key press continuely with a x milisecond wait?
Then when we trigger the weapon swap, GH will pressed "x" first, then press "w" for moving or "Rbutton" for fighting.
-
Post Thanks / Like - 1 Thanks
Test505 (1 members gave Thanks to setim for this useful post)