azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
I am trying to make an enum class for every value returned by WorldObject. This is a long and tedious process I am sure several of you have gone through already. Would one of you be willing to share some code that achieves the same goal? It would be greatly appreciated! public enum Imbued { Critical_Strike = 1, Crippling_Blow = 2, Slash_Rend = 8, Piercing_Rend = 16, Bludgeon_Rend = 32, Acid_Rend = 64, Frost_Rend = 128, Lightning_Rend = 256, Fire_Rend = 512 } //Your base WieldReqAttribute has to be at least // WieldReqValue to wield this item. public enum WieldReqType { Level = 7, Wand = 2, //Maybe } public enum WieldReqAttribute { War = 34, Void = 43, } public enum SlayerSpecies { Shadow = 22 } public enum CleaveType { Pierce = 2 } public enum ActivationReqSkillId { LoreOnly = 0 }
-----signature-----
(none)
|
Link to this post
|
azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
Would be more than happy to create methods for fileservice with this data once compiled...
-----signature-----
(none)
|
Link to this post
|
-Eps
Title: I Love Boobies. And Butts, too!
Posts:
17,344
Registered:
May 30, '07
Extended Info (if available)
Real Post Cnt: 32,011
User ID: 1,226,605
|
Subject:
Repost from Decal forums concerning WorldObject data
|
lol this is mad easy bro
-----signature-----
#dnn #og-ac http://tinyurl.com/ACDTChat Fastest 1-275 in AC history. Plugin Users: 100+ Buy Plugins Relogger, ValSalv, and AutoVendor(route trigger): http://bit.ly/ACaCAl [Trade] +Envoy Sparker says, "Rep check: Eps Levelin, PST."
|
Link to this post
|
yaroz_vn
Posts:
12,255
Registered:
Jun 30, '02
Extended Info (if available)
Real Post Cnt: 12,168
User ID: 693,371
|
Subject:
Repost from Decal forums concerning WorldObject data
|
Then why don't you help him Eps?
-----signature-----
Proud member of The Knights of Fortune Mr Adventure - Lil' Pew - Da Noob - Qar Yaroz - Yanno http://www.fortunesway.com
|
Link to this post
|
azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
I have everything mapped out except Special Properties. For example, my Soul Bound Staff returns a 0 for Special Properties. I can't seem to get this one figured out.
-----signature-----
(none)
|
Link to this post
|
azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
azv4 posted: I have everything mapped out except Special Properties. For example, my Soul Bound Staff returns a 0 for Special Properties. I can't seem to get this one figured out.
And since I don't have access to many SP items, it seems I am roadblocked on SP...
-----signature-----
(none)
|
Link to this post
|
mrFlipo
Posts:
476
Registered:
Jun 24, '03
Extended Info (if available)
Real Post Cnt: 465
User ID: 815,685
|
Subject:
Repost from Decal forums concerning WorldObject data
|
SlayerSpecies 1: result := 'Olthoi'; 2: result := 'Ghost'; 6: result := 'Tumerok'; 7: result := 'Tumerok'; 8: result := 'Tusker'; 14: result := 'Undead'; 19: result := 'Virindi'; 22: result := 'Shadow'; 28: result := 'Monouga'; 31: result := 'Human'; 75: result := 'Burun'; 77: result := 'Ghost'; 89: result := 'Murkir';
-----signature-----
(none)
|
Link to this post
|
azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
mrFlipo posted: SlayerSpecies 1: result := 'Olthoi'; 2: result := 'Ghost'; 6: result := 'Tumerok'; 7: result := 'Tumerok'; 8: result := 'Tusker'; 14: result := 'Undead'; 19: result := 'Virindi'; 22: result := 'Shadow'; 28: result := 'Monouga'; 31: result := 'Human'; 75: result := 'Burun'; 77: result := 'Ghost'; 89: result := 'Murkir';
Thanks for these! Still trying to figure out Special Properties... I am thinking it just doesn't work in Decal at this point.
-----signature-----
(none)
|
Link to this post
|
mrFlipo
Posts:
476
Registered:
Jun 24, '03
Extended Info (if available)
Real Post Cnt: 465
User ID: 815,685
|
Subject:
Repost from Decal forums concerning WorldObject data
|
are you finding non zero values for anything?
-----signature-----
(none)
|
Link to this post
|
azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
Thanks for the Slayer values, that is a big help. I guess it is safe to assume that the Special Properties string is assembled from different attributes. I have yet to find anything in my own inventory or in that of any tradebot's inventory that returns anything besides 0 for the longvaluekey.specialprop attribute.
-----signature-----
(none)
|
Link to this post
|
Virindi-Inquisitor
Posts:
6,908
Registered:
Nov 18, '01
Extended Info (if available)
Real Post Cnt: 6,646
User ID: 511,923
|
Subject:
Repost from Decal forums concerning WorldObject data
|
mrFlipo posted: SlayerSpecies 1: result := 'Olthoi'; 2: result := 'Ghost'; 6: result := 'Tumerok'; 7: result := 'Tumerok'; 8: result := 'Tusker'; 14: result := 'Undead'; 19: result := 'Virindi'; 22: result := 'Shadow'; 28: result := 'Monouga'; 31: result := 'Human'; 75: result := 'Burun'; 77: result := 'Ghost'; 89: result := 'Murkir';
No need to collect these, they are just the ones from the species table. Use fileservice or /vt dumpspecies to get them all.
-----signature-----
Virindi --- ****Virindi Plugins FAQ**** http://www.virindi.net/wiki/index.php/Virindi_Plugins_FAQ http://www.virindi.net - Virindi Tank, Follower, Integrator, Reporter, VCS5, XPHelper, Item Tool, HUDs, etc... Decal Core Dev - http://www.decaldev.com
|
Link to this post
|
azv4
Posts:
10,585
Registered:
Jul 14, '08
Extended Info (if available)
Real Post Cnt: 10,565
User ID: 1,309,146
|
Subject:
Repost from Decal forums concerning WorldObject data
|
Virindi-Inquisitor posted:
mrFlipo posted: SlayerSpecies 1: result := 'Olthoi'; 2: result := 'Ghost'; 6: result := 'Tumerok'; 7: result := 'Tumerok'; 8: result := 'Tusker'; 14: result := 'Undead'; 19: result := 'Virindi'; 22: result := 'Shadow'; 28: result := 'Monouga'; 31: result := 'Human'; 75: result := 'Burun'; 77: result := 'Ghost'; 89: result := 'Murkir';
No need to collect these, they are just the ones from the species table. Use fileservice or /vt dumpspecies to get them all.
The main issue at this point is trying to find things such as Biting Strike, Crushing Blow, Bael'Zharon's Hate, and so on...
-----signature-----
(none)
|
Link to this post
|