function AssassinSecond(cid, message, keywords, parameters, node)
if(not npcHandler:isFocused(cid)) then
return false
end
if isPremium(cid)
--if getPlayerStorageValue(cid,sassassin) == -1 then
if canPlayerWearOutfit(cid, 152, 2) or canPlayerWearOutfit(cid, 156, 2) then
selfSay(already, cid)
else
if getPlayerItemCount(cid,5804) >= 1 and getPlayerItemCount(cid,5930) >= 1 then
if doPlayerRemoveItem(cid,5804,1) and doPlayerRemoveItem(cid,5930,1) then
if(canPlayerWearOutfit(cid, 152) or canPlayerWearOutfit(cid, 156)) then
selfSay('Ah, right! The assassin katana! Here you go.', cid)
doSendMagicEffect(getCreaturePosition(cid), 13)
-- setPlayerStorageValue(cid,sassassin,1)
if getPlayerSex(cid) == 1 then
doPlayerAddOutfit(cid, 152, 2)
elseif getPlayerSex(cid) == 0 then
doPlayerAddOutfit(cid, 156, 2)
end
else
selfSay("You don't have an assassin outfit", cid)
end
else
selfSay(noitems2, cid)
end
else
selfSay(noitems2, cid)
end
end
else
selfSay("I support only premium customers", cid)
end
end