1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
ZO_PURCHASE_KIOSK_INTERACTION =
{
interactTypes = { INTERACTION_GUILDKIOSK_PURCHASE } ,
}
ZO_BID_ON_KIOSK_INTERACTION =
{
interactTypes = { INTERACTION_GUILDKIOSK_BID } ,
}
return purchase
end
end
end
EVENT_MANAGER : RegisterForEvent ( "guildKioskPurchaseShared" , EVENT_GUILD_KIOSK_CONSIDER_PURCHASE_START , OnGuildKioskConsiderPurchaseStart )
EVENT_MANAGER : RegisterForEvent ( "guildKioskPurchaseShared" , EVENT_GUILD_KIOSK_CONSIDER_PURCHASE_STOP , OnGuildKioskConsiderPurchaseStop )
end
local g_nextPurchaseUpdate = nil
if ( g_nextPurchaseUpdate == nil or gameTimeSecs >= g_nextPurchaseUpdate ) then
g_nextPurchaseUpdate = gameTimeSecs + 1
end
end
return bid
end
end
end
EVENT_MANAGER : RegisterForEvent ( "guildKioskBidShared" , EVENT_GUILD_KIOSK_CONSIDER_BID_START , function ( ) OnGuildKioskConsiderBidStart ( ) end )
EVENT_MANAGER : RegisterForEvent ( "guildKioskBidShared" , EVENT_GUILD_KIOSK_CONSIDER_BID_STOP , function ( ) OnGuildKioskConsiderBidStop ( ) end )
end
if hasBidOnThisTraderAlready then
else
end
end
|