JohnVeritas 
Apprentice

Posts: 49
Likes Given: 0
Likes Received: 4 in 4 posts
Joined: Feb 2014
Reputation: 2
![]()
|
RE: Item to be identified
(03-02-2014 07:44 AM)Osirirs Wrote: ....
ON=@Click
if (<attr>&(attr_magic))
message magic smith's hammer // normal one
endif
if (<attr>&(attr_identified))
src.sysmessage @026 Item Rank: Artifact
src.sysmessage @026 Skill: Blacksmithing +100.0
message @026 The Golden Hammer
endif
Return 1
....
You put that "return 1" to wrong place
Code:
ON=@Click
if (<attr>&(attr_magic))
message magic smith's hammer // normal one
return 1 // and secondary return 1 that i forgot the put :)
endif
if (<attr>&(attr_identified))
src.sysmessage @026 Item Rank: Artifact
src.sysmessage @026 Skill: Blacksmithing +100.0
message @026 The Golden Hammer
Return 1 // <- here is the right place.
endif
And i forgot put first return 1 sorry about that
|
|
03-02-2014 09:38 AM |
|
The following 1 user Likes JohnVeritas's post:1 user Likes JohnVeritas's post
Osirirs (03-04-2014)
|