game_market Sell State
#97
--[[
Script made by Lee (Discord: l33_) - www.trainorcreations.com
If you want to support my work, feel free to donate at https://trainorcreations.com/donate
PS. Stop ripping off my work and selling it as your own.
]]--
local state = offer:getState()
local offerTypeName = "?"
if offerType == MarketAction.Buy then
offerTypeName = "Buy"
elseif offerType == MarketAction.Sell then
if state == 1 then
offerTypeName = "Cancelled"
elseif state == 2 then
offerTypeName = "Expired"
elseif state == 3 then
offerTypeName = "Sold"
else
offerTypeName = "Sell"
end
end
+ add | - remove
17 May 2022