Ir para conteúdo
  • 0

Script De Nao Poder Killar Levels Baixos


Matematheus

Pergunta

Estou precisando de um script que tem um limite tipo level 800 nao pode mata um level 300 ou 200, mais sendo que tipo do 100 a 500 podem se matar, mais um level 600 800 n pode ;x, quem souber um script +REP ^^

Link para o comentário
Compartilhar em outros sites

7 respostass a esta questão

Posts Recomendados

  • 0

tenta

 

function onCombat(cid, target)
local MaxDifLevel = 50
if isPlayer(cid) and isPlayer(target) and math.abs(getPlayerLevel(cid) - getPlayerLevel(target)) > MaxDifLevel  then
doPlayerSendCancel(cid, "You may not attack your team mates.")
return false
end
return true
end

 

local MaxDifLevel = 50 é a diferença de lvl pra atacar o jogador

Editado por Vodkart
Link para o comentário
Compartilhar em outros sites

  • 0

tenta

 

function onCombat(cid, target)
local MaxDifLevel = 50
if isPlayer(cid) and isPlayer(target) and math.abs(getPlayerLevel(cid) - getPlayerLevel(target)) > MaxDifLevel  then
doPlayerSendCancel(cid, "You may not attack your team mates.")
return false
end
return true
end

 

local MaxDifLevel = 50 é a diferença de lvl pra atacar o jogador

da hora usa aqui :)

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...