Cut macro
Moderators: Murderator+, Murderator
Cut macro
Im playing on a shard now that prevents autocut. When you kill someone five invisible bodies appear next to the real corpse, so if you cut an invis corpse you die. So the trick is to only cut the one that is visible to me. Does anyone have any ideas on how to get around this
Only one trick special for you:)
On most shards are used incremental system of ID, each new item -> ID++. And What we have?:) If your shard use RunUO they may randomize corpses, but i dont think so. ok real corpse'll be first and it's ID is the smallest. Use findtype(0x2006, -1, 'ground') and find the smallest ID, but if u have more when 1 real turn on your mind:)
And how they do them invis?:))) as usual if item is invised injection cant handle it:) I think trouble in corpse color (by this parametr corpse change view)
On most shards are used incremental system of ID, each new item -> ID++. And What we have?:) If your shard use RunUO they may randomize corpses, but i dont think so. ok real corpse'll be first and it's ID is the smallest. Use findtype(0x2006, -1, 'ground') and find the smallest ID, but if u have more when 1 real turn on your mind:)
And how they do them invis?:))) as usual if item is invised injection cant handle it:) I think trouble in corpse color (by this parametr corpse change view)
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
Я думаю инвиз значит, что для них просто графа не нарисована или просто чёрный квадрат тама, тобишь прозрачный
Типа хреновина, чтобы мешать инжектерам жить..
Ну это если я конечно верно понял, суть написанного

Типа хреновина, чтобы мешать инжектерам жить..
Ну это если я конечно верно понял, суть написанного

YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
Мда.. ладно.. буду учить английский 

YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
ok let's try, i'm sorry, i was wrong with color param.
Count param is using for corpse model:)
I think your shard are using only one type of hidden corpses and you can easy find it.
Kill someone and run this script, you'll see numbers in left conner some must be equale, it's a hidden corpses.
In cut script you must check color of corpse!
Count param is using for corpse model:)
I think your shard are using only one type of hidden corpses and you can easy find it.
Code: Select all
sub FindHidden()
uo.FindType(0x2006, -1, 'ground')
while uo.FindCount()
uo.Print(str(uo.GetQuantity('finditem')))
wait(100)
uo.Ignore('finditem')
uo.FindType(0x2006, -1, 'ground')
wend
uo.IgnoreReset()
end sub
Kill someone and run this script, you'll see numbers in left conner some must be equale, it's a hidden corpses.
In cut script you must check color of corpse!