Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 03/24/2018 in all areas

  1. 1 point
    function ItemUse_BZ ( role , Item ) local Now_Day = os.date("%d") local Now_Month = os.date("%m") local Now_Time = os.date("%H") local NowTimeNum = tonumber(Now_Time) local NowDayNum = tonumber(Now_Day) local NowMonthNum = tonumber(Now_Month) local CheckDateNum = NowMonthNum * 10000 + NowDayNum * 100 + NowTimeNum local Cha_Boat = GetCtrlBoat ( role ) -- SystemNotice( role , Cha_Boat ) if Cha_Boat ~= nil then SystemNotice( role , "Cannot use while sailing" ) UseItemFailed ( role ) return end local item_id = GetItemID ( Item ) if item_id ==3077 then PlayEffect(role,370 ) elseif item_id==3344 then PlayEffect( role, 370 ) elseif item_id==3345 then PlayEffect(role , 361) elseif item_id==3346 then PlayEffect(role,362) elseif item_id ==3347 then PlayEffect(role,363) elseif item_id==3348 then PlayEffect(role,364) elseif item_id==3349 then PlayEffect(role,365) elseif item_id==3350 then PlayEffect(role,366) elseif item_id==3351 then PlayEffect(role,367) elseif item_id==3352 then PlayEffect(role,368) elseif item_id==3353 then PlayEffect(role,369) elseif item_id==3354 then PlayEffect(role,354) elseif item_id==3355 then PlayEffect(role,355) elseif item_id==3356 then PlayEffect(role,356) end end
  • Newsletter

    Want to keep up to date with all our latest news and information?
    Sign Up
×
×
  • Create New...