• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua changing prize mode

di12345di

New Member
Joined
Aug 1, 2012
Messages
105
Reaction score
0
some script.lua can please put the 1, 2 and 3 placed to receive the prize? more different awards

/lib < 8.60 , otx.

1 -
25 Mega Coins e 70 Crystal Coins
2 - 20 Mega Coins e 50 Crystal Coins
3 - 15 Mega Coins e 30 Crystal Coins
Understand?

Code:
-- POSIÇÕES IMPORTANTES
SBW_AREA = {{x = 32469, y = 32547, z = 7}, {x = 32513, y = 32591, z = 7}}-- AREA DO EVENTO | Canto superior esquerdo / inferior direito
SBW_WAITROOM = {{x = 32487, y = 32565, z = 6}, {x = 32495, y = 32573, z = 6}} -- AREA DE ESPERA | Canto superior esquerdo / inferior direito
SBW_TP = {x = 60, y = 99, z = 7} -- local onde teleport sera criado (entrada de jogadores)
SBW_TPGO = {x = 32491, y = 32569, z = 6} -- local onde teleport vai levar (saida de jogadores)
SBW_TPEND = {x = 160, y = 54, z = 7} -- local onde serao teleport ao final do evento
SBW_GERADOR = {x = 32491, y = 32569, z = 7} -- local onde gerador vai ficar

-- CONFIGURAÇÕES DO EVENTO
SBW_DAYS = {1,2,3,4,5,6,7} -- dias de semana que vai abrir
SBW_DURATION = 10 -- duração do evento em minutos
SBW_POINTSKILL = 1 -- pontos de jogo por morte
SBW_AMMOBUY = 20 -- quantia de munições compradas por cada ponto
SBW_MINAMMO = 50 -- munição inicial dos jogadores
SBW_TIMEWAIT = 3 -- tempo na sala de espera em minutos
SBW_AMMOINFI = false
SBW_LOSTSCORE = true
SBW_RANDOMIZE = true
SBW_RESETAMMO = true
SBW_STARTAUTO = true
SBW_USEWAIT = true

--PREMIO DO EVENTO
SBW_ADDREWARD = true
SBW_REWARDS = {
                {6527,500},
                {2345,1}
            }


-- // Não mexa daqui para baixo
SBW_TFS = "0.4"

-- STORAGES
SBW_EXAUSTHED = 2455
SBW_INEVENT = 2460
SBW_SCORE = 2465
SBW_AMMO = 2400


SBW_WALLSID = {5324,7003,7021,6712,7023,7002,6713,6714,6869,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6707,6708,6709,6710,6711,2698,2697,7020,6719,6720,6721,6722,6723,6724,6725,6726,6727,6761,6762,6768,6769,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4664,4665,4666,7008,7009,7010,7011,8239,7004,7005,7006,7007,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,7022}
SBW_BALLSPEED = 150
SBW_SHOOTEXAUSTHED = 1000
SBW_SHOOTDIR = 0                           
SBW_STATUS = 'on'

-- MENSAGENS
SBW_MSGWARNING = "[SNOWBALL WAR] Abriu o teleport de ingresso para o evento, para participar se dirija ate o templo do baiaknew."
SBW_MSGSTART = "[SNOWBALL WAR] O teleport foi removido e o evento foi iniciado, boa sorte a todos participantes."
 
Last edited:
Back
Top