SphereServer BugTracker - SphereServer
View Issue Details
0001670SphereServerexecutable - genericpublic30-10-09 11:3624-08-10 06:00
khaos 
 
normaltweakalways
closedno change required 
20-09-2009, 0.56b Prerelease 
0.56c Nightly 
20-09-2009
None
None
0001670: Severity = Annoying; t_feather/i_feather and more2 issues
SEVERITY = ANNOYING.

Now. This is the script for a feather below, modded and a typedef modded.. No shit right? Okay. Now if you add more2 = 0 to @create... or @itempickup_self, using argo.more2 of course.. it won't set to 0. In fact it stays as the animals baseid. Now. I tried editing the typedef as well. Same issues. More2 doesn't seem to be writable when you cut a corpse. BUT! Yes, there is a BUT. It can be set by a gm... which makes no sense.. You can set leather, and most other items, to set their more2 on @create and it works, even in resource cutting. Feathers seem the only thing broken? NOTE: I also tried setting more2 to value 2, 3, and 00(same as 0, still was worth testing).

[ITEMDEF 01bd1]
DEFNAME=i_feather
TYPE=t_FEATHER
VALUE=2
WEIGHT=.1
CATEGORY=Items by Professions
SUBSECTION=Archers/Bowyers
DESCRIPTION=Feathers (White)
DUPELIST=0dfa,0dfb,01bd2,01bd3

on=@create
more2=0

ON=@dclick
 SRC.SKILLMENU=sm_bolts
 return 1

[typedef t_feather]
//can=can_i_pile//tested with it, no results.
more2=0

on=@create
more2=0

on=@itempickup_self
more2=0



None of these work for piling.
No tags attached.
Issue History
30-10-09 11:36khaosNew Issue
30-10-09 11:36khaosNightly Version => 20-09-2009
30-10-09 11:36khaosExperimental Flags => None
30-10-09 11:36khaosOption Flags => None
30-10-09 15:35IncanusNote Added: 0000297
24-08-10 06:00khaosStatusnew => closed
24-08-10 06:00khaosNote Added: 0000596
24-08-10 06:00khaosResolutionopen => no change required
24-08-10 06:00khaosFixed in Version => 0.56c Nightly

Notes
(0000297)
Incanus   
30-10-09 15:35   
This works for me:

[ITEMDEF 01bd1]
DEFNAME=i_feather
TYPE=t_FEATHER
VALUE=2
WEIGHT=.1
CATEGORY=Items by Professions
SUBSECTION=Archers/Bowyers
DESCRIPTION=Feathers (White)
DUPELIST=0dfa,0dfb,01bd2,01bd3

ON=@dclick
    SRC.SKILLMENU=sm_bolts
    return 1

ON=@PICKUP_PACK
MORE2=0
RETURN 0
(0000596)
khaos   
24-08-10 06:00   
No fix needed, improper trigger usage on my part back in the day. Was resolved with a different trigger usage.