SphereCommunity
Armor OVER robe? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Armor OVER robe? (/Thread-Armor-OVER-robe)

Pages: 1 2


Armor OVER robe? - x77x - 12-28-2014 10:07 AM

possible by force?

i want a robe the covers leggings but not a chest

hmmmm


RE: Armor OVER robe? - Mordaunt - 12-28-2014 11:43 PM

No. Not without editing the paperdoll images and the animations


RE: Armor OVER robe? - x77x - 12-29-2014 01:59 AM

then why do you have layers= in scripts if its hardcoded?


RE: Armor OVER robe? - Ben - 12-29-2014 02:39 AM

Just change it's layer to another that covers what you need. That's the only way to fake it right now.
Layer=24 covers legs and feet
Layer=4,12,23 covers legs only

Those are the only layers that cover legs.


RE: Armor OVER robe? - x77x - 12-29-2014 03:37 AM

BAM!!!

thats what im talking about... thx ben

how come boots arent showing up on the paperdoll or animations?

nightly build 12/26/14


RE: Armor OVER robe? - Ben - 12-29-2014 03:59 AM

that could be a client issue maybe?
something to do with equipconv.def?

no idea really


RE: Armor OVER robe? - Mordaunt - 12-29-2014 05:14 AM

Well.. shows what I know Tongue


RE: Armor OVER robe? - x77x - 12-29-2014 06:03 AM

actually i figured out the boot problem...
i was using a shirt length item with layer 24 so it makes the boots disapear...
because layer 24 is supposed to cover them =P

found this
http://wiki.sphere.torfo.org/index.php/Layer

i want armor chest thats on top of all layers...
you can make the armor layer 18 aka earings and its on top, BUT its not calculated in your armor rating =/


anyway to calculate layer 18 instead of 13?


RE: Armor OVER robe? - Ben - 12-29-2014 06:43 AM

ARMOR_HEAD Layer = 6
ARMOR_NECK Layer = 10
ARMOR_BACK Layer = 5,13,17,20,22
ARMOR_CHEST Layer = 5,13,17,22
ARMOR_ARMS Layer = 19,20,22
ARMOR_HANDS Layer = 7
ARMOR_LEGS Layer = 4,12,22,23,24
ARMOR_FEET Layer = 3,24


RE: Armor OVER robe? - x77x - 12-29-2014 09:42 AM

im so crafty...


Code:
[ITEMDEF i_overplate_army]
ID=0277d
NAME=military issue leather overplate
TYPE=t_armor
FLIP=1
LAYER=18//EARRINGS
ARMOR=30
VALUE=209
WEIGHT=28.0
RESOURCES=28 i_hides_cut,1 i_thread
SKILLMAKE=Tailoring 36.3,t_sewing_kit
REQSTR=75
CANUSE=can_u_human
TEVENTS=t_equipitem
CATEGORY=THREE KINGDOMS
SUBSECTION=Military Armor
DESCRIPTION=leather overplate

ON=@Create
   HITPOINTS=50
   COLOR=color_leather

ON=@EQUIP
   SRC.modAR += 10
   RETURN 0
ON=@UNEQUIP
   SRC.modAR -= 10
   RETURN 0