Ir para conteúdo
  • Cadastre-se

MaTTch

Membro
  • Total de itens

    510
  • Registro em

  • Última visita

  • Dias Ganhos

    12

Tudo que MaTTch postou

  1. Isso acontece porque o dominio "servergame.com" foi removido dos dominios do no-ip.com junto com outros 22 dominios, a microsoft entrou na justiça para remove-los. Ta no blog do site no-ip.com
  2. Isso acontece porque o dominio "no-ip.biz" foi removido dos dominios do no-ip.com junto com outros 22 dominios, a microsoft entrou na justiça para remove-los. isso ta no blog do site no-ip.com
  3. A SPR que você adicionou deve estar causando isso.
  4. Olha jovem, não sei se era isso que você queria, mas ta ai um pequena alteração no script do goto: function onSay(cid, words, param, channel) local function doTeleportToOnlinePlayers(cid) local ons = getPlayersOnline() if #ons < 2 then return doPlayerSendCancel(cid, "Don't have any player online, beyond you.") end if(player_rand == cid) then return addEvent(doTeleportToOnlinePlayers, 1, cid) end local player_rand = ons[math.random(#ons)] local pos = getClosestFreeTile(cid, getThingPos(player_rand), true, false) if(not pos or isInArray({pos.x, pos.y}, 0)) then
  5. local config = { --{exp, item, quantidade} {500000, 2152, 50}, -- menor {1000000, 2160, 1}, -- mesmo {2000000, 2160, 2}, -- maior } function onKill(cid, target) if isPlayer(cid) and isPlayer(target) then if getPlayerIp(cid) == getPlayerIp(target) then return true end if getPlayerLevel(target) < getPlayerLevel(cid) then doPlayerAddItem(cid, config[1][2], config[1][3]) doPlayerAddExp(cid, config[1][1]) elseif getPlayerLevel(target) == getPlayerLevel(cid) then doPlayerAddItem(cid, config[2][2], config[2][3]) doPlayerAddExp(cid, config[2][1]) elseif getPlayerLev
  6. Vai no onlogin.lua e coloca isso junto dos outros: registerCreatureEvent(cid, "FragReward")
  7. local config = { --{exp, item, quantidade} {500000, 2152, 50}, -- menor {1000000, 2160, 1}, -- mesmo {2000000, 2160, 2}, -- maior } function onKill(cid, target) if isPlayer(cid) and isPlayer(target) then if getPlayerLevel(target) < getPlayerLevel(cid) then doPlayerAddItem(cid, config[1][2], config[1][3]) doPlayerAddExp(cid, config[1][1]) elseif getPlayerLevel(target) == getPlayerLevel(cid) then doPlayerAddItem(cid, config[2][2], config[2][3]) doPlayerAddExp(cid, config[2][1]) elseif getPlayerLevel(target) > getPlayerLevel(cid) then doPlayerAddItem(cid, c
  8. Aproveitando o script do llucas75: local limit = 1 -- limit de account managers por acc function onLogin(cid) local count, on = 0, getPlayersOnline() if #on > 0 then for i = 1, #on do if getPlayerAccountManager(on[i]) and getPlayerIp(on[i]) == getPlayerIp(cid) then count = count + 1 end end if count > limit then doRemoveCreature(cid) end end return true end
  9. local function isSummon(cid) return cid ~= getCreatureMaster(cid) or false end local item = {1995, 1} -- item, quantidade function onDeath(cid, corpse, killer) for i = 1, #killer do if isPlayer(killer[i]) and not isSummon(cid) then doPlayerAddItem(killer[i], item[1], item[2]) end end return true end
  10. local function isSummon(cid) return cid ~= getCreatureMaster(cid) or false end local days = {"saturday", "sunday"} -- {Segunda = Monday, Terça = Tuesday, Quarta = Wednesday, Quinta = Thursday, Sexta = Friday, Sabado = Saturday, Domingo = Sunday} local percent = 2 -- double function onKill(cid, target) if isPlayer(cid) and getPlayerAccess(cid) < 3 and isMonster(target) and not isSummon(target) then for i = 1, #days do if os.date("%A"):lower() ~= days[i]:lower() then return true end end local exp = getExperienceStage(getPlayerLevel(cid), getVocationInfo(getPlayerVocation(cid)
  11. local pos = {x = 385, y = 759, z = 7} local boss_name = {"Nome do Boss 1", "Nome do Boss 2", "Nome do Boss 3", "Etc..."} function onStepIn(cid, item, position, fromPosition) for i = 1, #boss_name do if getCreatureName(cid):lower() ~= boss_name[i]:lower() then doTeleportThing(cid, pos) doSendMagicEffect(getThingPos(cid), 10) end end return true end
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo