SkyLigh
Lorde-
Total de itens
2183 -
Registro em
-
Última visita
-
Dias Ganhos
23
Tudo que SkyLigh postou
-
Qual a versao que você esta querendo
-
tente usa este http://www.xtibia.com/forum/topic/133419-talkaction-comando-de-ban/
-
Sim mas pra isso você tera que postar algum script de talkaction que somente akele script podera ser usado nakela pos !
-
dúvida Me Ajudem Por Favor Nao Consigo Mudar Senha Do God!
pergunta respondeu ao leandraodl de SkyLigh em Scripts
Porem na versao 8.7 foi mudado o esquema as senhas ficam como afhu7ahw289aehuade A sua fica assim no sqlite esta que eu postei e ex so pra ver se e embolado a sua ? e quando vai entrar no god n e essa -
Pera ai n entendi direito como assim posta ai algum talk pra mim editar
-
pedido Um Scripter Q De Menos Ou Igual A 5 Em X Item
pergunta respondeu ao DarkSiders de SkyLigh em Scripts
isto e facil dark e so você colocar o if e no then adicione < 5 then e pronto ira adicionar 5 pra baixo -
pronto aki esta '-' function onUse(cid, item, fromPosition, itemEx, toPosition) local egg = { ["Amarelo"] = {id = 6541, mon = "Shadown Holy Pet"}, ["Vermelho"] = {id = 6542, mon = "Shadown Fire Pet"}, ["Azul"] = {id = 6543, mon = "Shadown Ice Pet"}, ["Verde"] = {id = 6544, mon = "Shadown Poison Pet"}, ["Roxo"] = {id = 6545, mon = "Shadown Energy Pet"}, ["Branco"] = {id = 2695, mon = "Shadown Master Pet"} } if getTilePzInfo(getCreaturePosition(cid)) then doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT,"você precisa estar em protection zone pra poder summonar um pet.") return true end for k,v in pairs(egg) do if item.itemid == v.id then x = doSummonCreature(v.mon, getCreaturePosition(cid)) doConvinceCreature(cid, x) doRemoveItem(item.uid, 1) end end end
-
duvida sanada reportado pra moverem
-
Erro esta no items do seu rme eu acho visite talvez lhe ajude http://www.xtibia.com/forum/topic/176869-tutorial-trocando-os-itens-de-seu-rme/
-
reportado pro tópico se fechado
-
este aki funciono ! va em data / scripts / talkactions / e crie um arquivo ranks.lua e adicione isto la -- Original script edited by MaxLinux or Sciter -- Ranking Frags -- function getPlayerNameByGUID2(n) local c = db.getResult("SELECT `name` FROM `players` WHERE `id` = "..n..";") if c:getID() == -1 then return "SQL_ERROR["..n.."]" end return c:getDataString("name") end function onSay(cid, words, param) local max = 10 local letters_to_next = 20 local skills = { ['fist'] = 0, ['club'] = 1, ['sword'] = 2, ['axe'] = 3, ['distance'] = 4, ['shielding'] = 5, ['fishing'] = 6, ['dist'] = 4, ['shield'] = 5, ['fish'] = 6, } local name_now local name = "Highscores\n" local rkn = 0 local no_break = 0 param = string.lower(param) dofile('config.lua') if param == "" or param == "level" and ( param ~= "magic" and param == "ml") and skills[param] == nil then name = name.."\n" name = name.."Ranking Level - Nome do Jogador\n" local v = db.getResult("SELECT `name`, `level`, `experience` FROM `players` WHERE `group_id` <= 2 ORDER BY `experience` DESC LIMIT 0,"..(max)..";") repeat no_break = no_break +1 if v:getID() == -1 then break end rkn = rkn+1 name_now, l = v:getDataString("name"), string.len(v:getDataString("name")) space = "" for i=1, letters_to_next-l do space = space.." " end name = name..rkn..". ["..v:getDataInt("level") .."] - "..name_now..space.." ".."\n" if no_break >= 20 then break end until v:next() == false elseif param == "magic" or param == "ml" then name = name.."\n" name = name.."Ranking Magic - Nome do Jogador\n" local v = db.getResult("SELECT `name`, `level`, `maglevel` FROM `players` WHERE `group_id` <= 2 ORDER BY `maglevel` DESC LIMIT 0,"..(max)..";") repeat if v:getID() == -1 then break end rkn = rkn+1 name_now, l = v:getDataString("name"), string.len(v:getDataString("name")) space = "" for i=1, letters_to_next-l do space = space.." " end name = name..rkn..". ["..v:getDataInt("maglevel").."] - "..name_now..space.." ".." ".."".."\n" until v:next() == false elseif param == "kills" or param == "killer" or param == "kill" or param == "frag" or param == "frags" then name = name.."\n" name = name.."Ranking Frags\n" local v = db.getResult("SELECT `player_id`, `value` FROM `player_storage` WHERE `key` = 90190 ORDER BY cast(value as INTEGER) DESC;") local kk = 0 repeat if kk == max or v:getID() == -1 then break end kk = kk+1 name_now, l = getPlayerNameByGUID2(v:getDataInt("player_id")), string.len(getPlayerNameByGUID2(v:getDataInt("player_id"))) space = "" for i=1, letters_to_next-l do space = space.." " end if name_now == nil then name_now = 'sql error['..v:getDataInt("player_id")..']' end name = name..kk..". ["..v:getDataInt("value").."] - "..name_now..space.." \n" until v:next() == false elseif skills[param] ~= nil then name = name.."\n" name = name.."Ranking "..param.." fighting - Nome do Jogador\n" local v = db.getResult("SELECT `player_id`, `value` FROM `player_skills` WHERE `skillid` = "..skills[param].." ORDER BY `value` DESC;") local kk = 0 repeat if kk == max or v:getID() == -1 then break end kk = kk+1 name_now, l = getPlayerNameByGUID2(v:getDataInt("player_id")), string.len(getPlayerNameByGUID2(v:getDataInt("player_id"))) space = "" for i=1, letters_to_next-l do space = space.." " end if name_now == nil then name_now = 'sql error['..v:getDataInt("player_id")..']' end name = name..kk..". ["..v:getDataInt("value").."] - "..name_now..space.." \n" until v:next() == false end if name ~= "Highscore\n" then doPlayerPopupFYI(cid, name) end return TRUE end OBS : Este e um talk de rank normal so que com o do frag dps em talkactions.xml <talkaction words="!rank" script="ranks.lua"/>
-
mattheus tente este http://www.xtibia.com/forum/topic/144807-top-frags/
-
Este erro acontece quando a pasta dos items.xml esta trocadas ! visite este tutorial podera lhe ajudar http://www.xtibia.com/forum/topic/176869-tutorial-trocando-os-itens-de-seu-rme/
-
este aki nao e meu mas tente -- Script Vip Sytem 1.0 -- function onStepIn(cid, item, position, fromPosition) local config = { msgDenied = "Você não e vip ,para adqrir sua vip fale !buyvip que custa 1KK", -- msg que ira retornar se o player n for vip msgWelcome = "Seja Bem Vindo a Area vip." -- msg de quem e vip quando entrar } if getPlayerStorageValue(cid, 13545) - os.time() <= 0 then -- A Storage da vip que vc ira colocar no movements.xml doTeleportThing(cid, fromPosition, true) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, config.msgDenied) doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE) return TRUE end doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, config.msgWelcome) return TRUE end
-
action Add Premium Por Talk E Action
tópico respondeu ao SkyLigh de SkyLigh em Actions e Talkactions
Obrigado A Todos Pelos os elogios. -
pedido Talkactions Que Teleporta Players Que Trapam Trap
pergunta respondeu ao \Mattheus ~* de SkyLigh em Scripts
Como assim ? uma talk o player fala !war e os kra sai ou posso fazer um pra vc que se ficar mas de 30 seg em um tille ser kickado -
Local incorreto reportado
-
pedido Script De Nao Poder Killar Levels Baixos
pergunta respondeu ao Matematheus de SkyLigh em Scripts
duvida sanada reportado -
blz aki ta a tag <talkaction log="yes" access="5" words="/giveitem" event="script" value="nome do arquivo.lua"/>
-
este script aki eu so editei pra ir pro depot créditos trinksot doPlayerAddDepotItem(player, itemid, quant) function onSay(cid, words, param) local param = param.explode(param, ',') if param then if isPlayer(getCreatureByName(param[1])) == TRUE then doPlayerSendTextMessage(getCreatureByName(param[1]), 22, "Você acabou de receber um item do ADM!") doPlayerAddDepotItem(getCreatureByName(param[1]), param[2], param[3]) end else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") end return TRUE end
-
Junior vai no globalevent.xml e procure a tag do clean / save e troque o interval para 15000 Smix também reportado por flood por ficar pedindo rep no post sem ter nada so pedindo o rep +
-
ai tenta agr <?xml version="1.0" encoding="UTF-8"?> <monster name="Saco de Pancada" nameDescription="a saco de pancada" race="undead" experience="0" speed="0" manacost="0"> <health now="9999999999" max="9999999999"/> <look typeex="5787" head="20" body="30" legs="40" feet="50" corpse="3128"/> <targetchange interval="60000" chance="0"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="1"/> <flag staticattack="50"/> <flag lightlevel="0"/> <flag lightcolor="0"/> <flag targetdistance="1"/> <flag runonhealth="0"/> </flags> <attacks> <attack name="melee" interval="500" min="0" max="0"/> <attack name="physical" interval="3000" chance="25" range="7" min="-1" max="-1"> <attribute key="shootEffect" value="arrow"/> </attacks> <defenses armor="0" defense="0"> <defense name="ultimate healing" interval="5000" chance="100000" min="9999999999" max="9999999999"/> </defenses> <immunities> <immunity physical="0"/> <immunity energy="0"/> <immunity fire="0"/> <immunity poison="0"/> <immunity lifedrain="0"/> <immunity paralyze="0"/> <immunity outfit="0"/> <immunity drunk="0"/> <immunity invisible="1"/> </immunities> <voices interval="2000000" chance="1"> <voice sentence="Bate que nem homem porra!"/> <voice sentence="Feel my kick!"/> <voice sentence="Voce nunca vai me mata."/> </voices> <loot> <item id="2148" countmax="20" chance1="100000" chancemax="0"/> <item id="1949" chance="10000"/> <item id="2467" chance="10000"/> <item id="2642" chance="6666"/> <item id="1987" chance="100000"> <inside> <item id="2044" chance="6666"/> <item id="2689" countmax="3" chance1="20000" chancemax="0"/> <item id="2401" chance="3333"/> <item id="2166" chance="1428"/> </inside> </item> </loot> </monster>
-
ai o treiner eu peguei de um baiak e dei uma editada que vc pediu dps eu fazo o do outro monstro que eu tenho que sair agr <?xml version="1.0" encoding="UTF-8"?> <monster name="Saco de Pancada" nameDescription="a saco de pancada" race="undead" experience="0" speed="0" manacost="0"> <health now="9999999999" max="9999999999"/> <look typeex="5787" head="20" body="30" legs="40" feet="50" corpse="3128"/> <targetchange interval="60000" chance="0"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="1"/> <flag staticattack="50"/> <flag lightlevel="0"/> <flag lightcolor="0"/> <flag targetdistance="1"/> <flag runonhealth="0"/> </flags> <attacks> <attack name="melee" interval="500" min="0" max="0"/> </attacks> <defenses armor="0" defense="0"> <defense name="ultimate healing" interval="5000" chance="100000" min="9999999999" max="9999999999"/> </defenses> <immunities> <immunity physical="0"/> <immunity energy="0"/> <immunity fire="0"/> <immunity poison="0"/> <immunity lifedrain="0"/> <immunity paralyze="0"/> <immunity outfit="0"/> <immunity drunk="0"/> <immunity invisible="1"/> </immunities> <voices interval="2000000" chance="1"> <voice sentence="Bate que nem homem porra!"/> <voice sentence="Feel my kick!"/> <voice sentence="Voce nunca vai me mata."/> </voices> <loot> <item id="2148" countmax="20" chance1="100000" chancemax="0"/> <item id="1949" chance="10000"/> <item id="2467" chance="10000"/> <item id="2642" chance="6666"/> <item id="1987" chance="100000"> <inside> <item id="2044" chance="6666"/> <item id="2689" countmax="3" chance1="20000" chancemax="0"/> <item id="2401" chance="3333"/> <item id="2166" chance="1428"/> </inside> </item> </loot> </monster>
-
duvida sanada reportado
-
Deus Seja Lovato
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.
