MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > Bots and Programs > WoW Memory Editing
Reload this Page Skinnable?
WoW Memory Editing WoW Memory Editing for learning purposes only.

Reply
 
LinkBack Thread Tools
Skinnable?
(#1)
Old
ShoniShilent is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 3
ShoniShilent is an unknown quantity at this point
 
Posts: 43
Join Date: May 2008
Skinnable? - 05-30-2008

i noticed that this was posted:

UNIT_DYNAMIC_FLAGS=0x278, {
01: has loot
02: ???
04: locked to a player
08: locked to you
}



thank you to whomever posted that. However, i see that there is no flag for skinnable. a dead animal that is has been looted but is still skinnable is just shown as 12 (4 + 8). is there some other flag or offset that can be used?

best,
Cal
Reply With Quote

Donate to remove ads.
(#2)
Old
KOS0937's Avatar
KOS0937 is Offline
Master Sergeant
Rep Power: 1
Reputation: 7
KOS0937 is an unknown quantity at this point
 
Posts: 76
Join Date: May 2008
05-30-2008

It's not in that variable, it's in
Code:
unit_flags_0: 
8: (from a) player
10: totem?!
40: elite? 
800: fighing
1000: in pvp
8000: ???
40000: immobile (player dead / stunned = C0000)
80000:  in melee
4000000: skinnable
20000000: dazed
Reply With Quote
(#3)
Old
ShoniShilent is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 3
ShoniShilent is an unknown quantity at this point
 
Posts: 43
Join Date: May 2008
05-30-2008

Quote:
Originally Posted by KOS0937 View Post
It's not in that variable, it's in
Code:
unit_flags_0: 
8: (from a) player
10: totem?!
40: elite? 
800: fighing
1000: in pvp
8000: ???
40000: immobile (player dead / stunned = C0000)
80000:  in melee
4000000: skinnable
20000000: dazed
i realize i am probably becoming aggravating, but i just did a forum search for:

unit_flags_0

and nothing comes up but this thread. so i have no idea what struct this variable unit_flags_0 is part of?

is it part of:

enum eUnitFields { offset: 2660?
UNIT_FIELD_CHARM=0x0,
UNIT_FIELD_SUMMON=0x8,
UNIT_FIELD_CHARMEDBY=0x10,
UNIT_FIELD_SUMMONEDBY=0x18,
UNIT_FIELD_CREATEDBY=0x20,
UNIT_FIELD_TARGET=0x28,
UNIT_FIELD_PERSUADED=0x30,
UNIT_FIELD_CHANNEL_OBJECT=0x38,
UNIT_FIELD_HEALTH=0x40,
UNIT_FIELD_POWER1=0x44,
UNIT_FIELD_POWER2=0x48,
UNIT_FIELD_POWER3=0x4C,
ETC
ETC
}

which has

UNIT_FIELD_FLAGS=0xA0,
UNIT_FIELD_FLAGS_2=0xA4,

and

UNIT_NPC_FLAGS=0x288,

is it one of those? if not, what struct holds this variable?

thanks again for the reply, just need a little more clarification.

EDIT-- i figured it out. it's the UNIT_FIELD_FLAGS=0xA0, of the eUnitFields struct. the only shame of it is that the skinnable flag does not happen until the unit is dead and looted. so you can't specifically target skinnable units, you can only determine if they are skinnable after killing them and looting them. is there another way or is this it? thanks again for the info-

also, is there a way to skin without looting (just for info). or is there a way to remove the loot without picking it up and then skinning?

thanks-

Last edited by ShoniShilent; 05-31-2008 at 02:36 AM.
Reply With Quote
(#4)
Old
KOS0937's Avatar
KOS0937 is Offline
Master Sergeant
Rep Power: 1
Reputation: 7
KOS0937 is an unknown quantity at this point
 
Posts: 76
Join Date: May 2008
05-31-2008

yes i'm sorry, it's UNIT_FIELD_FLAGS... i renamed it in my code ^^
unfortunately you can't skinn a mob without killing and looting it first and i doubt there will be a way to determin whether you will be able to skin them lateron, so you'll just have to stick with this.

My guess is, that you are only walking around some waypoints anyways, so why not create a list of mobs the bot is supposed to attack? Look at the zolobot, whenever the player clicks "add mob", the bot will store the current targets OBJECT_FIELD_ENTRY value and will only target those mobs while botting..
Reply With Quote
(#5)
Old
Xarg0's Avatar
Xarg0 is Offline
Sergeant Major
Rep Power: 1
Reputation: 19
Xarg0 is on a distinguished road
 
Posts: 144
Join Date: Jan 2008
Location: High in the sky
05-31-2008

I'm quite sure that there's a way to check if you can skinn a corpse
Quote:
enum eCorpseFields {
CORPSE_FIELD_OWNER=0x18,
CORPSE_FIELD_FACING=0x20,
CORPSE_FIELD_POS_X=0x24,
CORPSE_FIELD_POS_Y=0x28,
CORPSE_FIELD_POS_Z=0x2C,
CORPSE_FIELD_DISPLAY_ID=0x30,
CORPSE_FIELD_ITEM=0x34,
CORPSE_FIELD_BYTES_1=0x80,
CORPSE_FIELD_BYTES_2=0x84,
CORPSE_FIELD_GUILD=0x88,
CORPSE_FIELD_FLAGS=0x8C,
CORPSE_FIELD_DYNAMIC_FLAGS=0x90,
CORPSE_FIELD_PAD=0x94,
TOTAL_CORPSE_FIELDS=38
};
This is the corpse struct from wowdev wiki, CORPSE_FIELD_FLAGS should have the skinning flag set if it's skinable.
I guess that's what isxwow uses for it's skinable method.
But creating a white list of mobs to attack by mob id is also a nice way to deal with this problem, as you could save if a specific mob is skinable or not.
You could also use a completed mob db with spawn locations and stuff like that, from a blizz like private server and create a non waypoint bot that kills specific mobs for quests, of course you'd need a good navigation system to do something like that, if that sounds interesting to you, take a look at ppathers source code at codegoogle, it's a extension for Glider Elite and written in csharp.


Bei 200° 15 Minuten Backen und keine EIER!!!!!!!!
Reply With Quote
(#6)
Old
ShoniShilent is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 1
Reputation: 3
ShoniShilent is an unknown quantity at this point
 
Posts: 43
Join Date: May 2008
05-31-2008

thanks for the replies. i will look at the corpse_field_flags, but i don't understand when this field would get set. for instance when i kill a wolf, it still places a

enum eUnitFields

for the dead wolf in the object fields.


is a corpse field from eCorpseFields also created for the same wolf?

lots of good info in this thread-

thanks!
Reply With Quote
(#7)
Old
KOS0937's Avatar
KOS0937 is Offline
Master Sergeant
Rep Power: 1
Reputation: 7
KOS0937 is an unknown quantity at this point
 
Posts: 76
Join Date: May 2008
05-31-2008

I think that the eCorpseFields is only for your own corpse while in ghost mode. I've not checked this so far, but it seems propable.
Reply With Quote
Reply

Donate to remove ads.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On




Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342