Bom eu estava mexendo em meu OTServ 7.81, ai quando vi uma script de invasion e resolvi usa ela em meu serv, e queria saber como uso ela e para isso preciso de uma ajuda de vocês do XTibia. Uma explicação da script que vo posta aqui.
function onUse(cid, item, frompos, item2, topos)
if getPlayerAccess(cid) >= 0 then
topleft = {x=132, y=37, z=7}
bottonright = {x=387, y=117, z=7}
maxmonsters = nil
checking = {x=topleft.x, y=topleft.y, z=topleft.z}
summonedtotal = 0
repeat
checkforsummon = 0
spawnrate = math.random(0,10)
if spawnrate == 0 and summonedtotal ~= maxmonsters then
species = math.random(1,10)
if species == 1 then
checkforsummon = doSummonCreature("Demon",checking)
elseif species == 2 then
checkforsummon = doSummonCreature("Demon",checking)
elseif species == 3 then
checkforsummon = doSummonCreature("Demon",checking)
elseif species == 4 then
checkforsummon = doSummonCreature("Demon",checking)
elseif species == 5 then
checkforsummon = doSummonCreature("Demon",checking)
elseif species == 6 then
checkforsummon = doSummonCreature("Demon",checking)
elseif species == 7 then
checkforsummon = doSummonCreature("Demon",checking)
else
checkforsummon = doSummonCreature("Demon",checking)
end
if checkforsummon ~= 0 then
summonedtotal = summonedtotal+1
end
end
checking.x = checking.x+1
if checking.x > bottonright.x then
checking.x = topleft.x
checking.y = checking.y+1
end
until checking.y > bottonright.y
print("Number of creatures summoned:",summonedtotal)
end
return 1
end