› General › Macro Help › Stealing Macro?
- This topic has 20 replies, 13 voices, and was last updated 5 years, 6 months ago by sharnthor.
-
AuthorPosts
-
October 7, 2017 at 9:33 am #460DollFaceMember
- Topics - 1
- Replies - 2
- Total - 3
- Neophyte
- ★
I am pretty much a noob, but is there an actual way to macro stealing?
October 7, 2017 at 11:23 am #461lotharMember- Topics - 2
- Replies - 16
- Total - 18
- Neophyte
- ★
I think there is, I see some guys doing it.
I don’t know how stealing works, but if it gives you a target pointer, I guess you could try using targettype on something the NPC has, and maybe then give it back?
October 17, 2017 at 11:51 am #571thatoneguyMember- Topics - 29
- Replies - 66
- Total - 95
- Journeyman
- ★★★★
Sounds like nobody wants to reveal the secret on this one.
October 17, 2017 at 4:38 pm #572NagashAdministratorThere are some EasyUO macro’s that do this. It will require some reading about EasyUO and some basic knowledge about scripting.
Here is a part of a stealing/sell script macro written by someone on this shard to give you a general idea on how an EasyUO script works (this script won’t work as is).
; Equip gloves and stand next to the victimset %steal_cd 10s
; Main Loop
main:
set %alternate 0
msg sell$
gosub init_targets
event macro 8 7 ;open backpack, to close other bags
wait 20
set %last_talk #scnt
loop:
set %silence_time #scnt – %last_talk
if %silence_time > 17
{
if %alternate = 0
{
msg buy$
set %alternate 1
}
else
{
msg sell$
set %alternate 0
}
set %last_talk #scnt
}
gosub Snoopif %success = #true
{
event sysmessage Snoop success, stealing.
gosub Steal
}
goto loopsub init_targets
Set #TARGCURS 1
Display Please target victim.
While #TARGCURS = 1
{
Wait 0
}
Set %VicID #LTARGETIDfinditem KKH c_ , #CHARID
if #FINDCNT > 0
{
set %GloveID #FINDID
set %GloveType #FINDTYPE
}
else
{
display Equip thief’s gloves and try again.
halt
}
returnOctober 18, 2017 at 4:10 pm #590imoldgreggMember- Topics - 6
- Replies - 15
- Total - 21
- Novice
- ★★
Will this work if put in razor? If not can you explain how to set it up in razor?
October 18, 2017 at 4:58 pm #591NagashAdministratorThis only works in EasyUO, in Razor you cannot make these complex macro’s.
October 23, 2017 at 4:50 pm #638thatoneguyMember- Topics - 29
- Replies - 66
- Total - 95
- Journeyman
- ★★★★
I’ve never written code beyond HTML. I’ve been coming back to this hint every night since it was posted, as well as spending a few hours in the wiki for EASYUO and almost pulling my hair out trying to figure it out.
Can i just ask, is the script you provided in a jumbled order? I know part of the script is missing, but is it also jumbled around as well?
October 23, 2017 at 5:10 pm #639skankmarronMember- Topics - 5
- Replies - 11
- Total - 16
- Neophyte
- ★
its not jumbled.
it uses subscripts, so multiple scripts withing the same parent. referencing each seperate one as needed.October 23, 2017 at 5:24 pm #640thatoneguyMember- Topics - 29
- Replies - 66
- Total - 95
- Journeyman
- ★★★★
Ah. I have a face value understanding of how gosub works and the bouncing around scripts do, but I was just making sure before I kept analyzing this that it wasn’t jumbled for the purpose of retaining its anonymity and uselessness.
December 10, 2017 at 10:43 pm #844imoldgreggMember- Topics - 6
- Replies - 15
- Total - 21
- Novice
- ★★
Anyone figure out how to macro stealing with razor yet?
December 25, 2017 at 4:38 pm #884grndzMember- Topics - 2
- Replies - 3
- Total - 5
- Neophyte
- ★
imoldgregg, forget about razor, it cannot handle this.
i made a macro with EasyUO from the first Zulu Hotel Dreams and still working.
But sorry, I will not share the steal macro because every day I go to sleep, I wake up with a people trying to open the bag of the same npc as I, imagine if I borrow? for example, there is only 1 Ranger, 1 Mage and there are always people in them.January 28, 2019 at 2:18 am #2865qarkMember- Topics - 4
- Replies - 32
- Total - 36
- Novice
- ★★
so instead of a new thread ill post here. i can easily make macros on razor to gm stealing BUT i cant steal out of a bag in my house that isnt locked down or secure here. why? how do you even steal? i have never not be allowed to macro stealing in this way so i’m lost.
i have done it this way (unlocked down not secure container) and with a secure chest
neither work hereJanuary 28, 2019 at 3:30 am #2866krynnMember- Topics - 3
- Replies - 38
- Total - 41
- Apprentice
- ★★★
I don’t think stealing works here at all. I believe you can train the skill but it has no real use.
January 28, 2019 at 2:07 pm #2870archaxeMember- Topics - 7
- Replies - 39
- Total - 46
- Apprentice
- ★★★
You need to target NPCs. You cannot steal from players, out of bags or secure containers.
January 28, 2019 at 4:37 pm #2873qarkMember- Topics - 4
- Replies - 32
- Total - 36
- Novice
- ★★
what the fuck is the point of the skill if you cant steal from players lol
but ok, thanksJanuary 28, 2019 at 6:07 pm #2874archaxeMember- Topics - 7
- Replies - 39
- Total - 46
- Apprentice
- ★★★
Stealing from players has been disabled for as long as I can remember. It was considered to imbalanced to be able to simply steal a swift dev from a players backpack, oddly enough.
January 28, 2019 at 8:15 pm #2875qarkMember- Topics - 4
- Replies - 32
- Total - 36
- Novice
- ★★
also what NPCs have backpacks? i cant find one who does
January 28, 2019 at 9:10 pm #2876archaxeMember- Topics - 7
- Replies - 39
- Total - 46
- Apprentice
- ★★★
Well every NPC in Occlo does, and most monsters. You snoop them using thief gloves, then steal from the backpack that appears.
March 9, 2019 at 4:43 am #3285willowleafMember- Topics - 7
- Replies - 25
- Total - 32
- Novice
- ★★
can anyone post a completed stealing macro on easyuo. never done this type of scripting before. can anyone help?
March 9, 2019 at 9:36 pm #3289chopinMember- Topics - 4
- Replies - 37
- Total - 41
- Apprentice
- ★★★
I too, am at a loss on how to set up a stealing macro via EasyUO, and honestly EasyUO in general. Which is awful because I was pretty hype to play a thief until I found out razor can’t handle stealing, and I’m far too inept with the aforementioned EasyUO
March 13, 2019 at 5:28 am #3295sharnthorMember- Topics - 21
- Replies - 90
- Total - 111
- Expert
- ★★★★★
Why not just click new – press the record button – and you’re done?
-
AuthorPosts
- You must be logged in to reply to this topic.