SkyLigh
Lorde-
Total de itens
2183 -
Registro em
-
Última visita
-
Dias Ganhos
23
Tudo que SkyLigh postou
-
Veih talvez o kamikaze dele ele n pego do seu ele pego do kamikaze verdadeiro
-
Pronto aki esta
-
Você quer so um npc que fique falando sem vender nada? se for isso va em data / npc / scripts / e ponha o nome de algum arquivo.lua para bocoh e adicione isto la local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end function thinkCallback(cid) local rand = math.random(1,100) if rand == 1 then selfSay('Posso ajudar?') -- msg que vai sair do npc selfSay('Bem vindo !') -- msg que vai sair do npc end return true end function greetCallback(cid) return true end npcHandler:setCallback(CALLBACK_ONTHINK, thinkCallback) npcHandler:setCallback(CALLBACK_GREET, greetCallback) npcHandler:addModule(FocusModule:new()) agr em data / npc / e renome algum arquivo.xml para bocoh e ponha isto dentro <?xml version="1.0" encoding="UTF-8"?> <npc name="bocoh" script="data/npc/scripts/bocoh.lua" walkinterval="5000" floorchange="0"> <health now="100" max="100"/> <look type="130" head="50" body="63" legs="132" feet="0" addons="3"/> <parameters> </parameters> </npc> pronto agr so reinicia seu sv
-
Se voce puder postar aki a imagem pra mim editar fico agradecido
-
function onSay(cid, words, param, channel) local name = getCreatureName(cid) sorcerer = { pcoin = 19000, level = 1, text = "Parabens", } druid = { pcoin = 19000, level = 1, text = "Parabens", } paladin = { pcoin = 19000, level = 1, text = "Parabens", } knight = { pcion = 19000, level = 1, text = "Parabens", } if getPlayerVocation(cid) == 1 then voc = sorcerer elseif getPlayerVocation(cid) == 2 then voc = druid elseif getPlayerVocation(cid) == 3 then voc = paladin elseif getPlayerVocation(cid) == 4 then voc = knight else voc = nil end if voc ~= nil then if getPlayerLevel(cid) >= voc.level then if getPlayerAccess(cid) == 5 then local t = string.explode(param, ",") if not t[2] then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(t[1]) local days = t[2] local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") return TRUE end setPlayerPromotionLevel(cid, 1) db.executeQuery("UPDATE `players` SET `name` = '[Vip] "..name.."' WHERE `id` = "..getPlayerGUID(cid)..";") doSendMagicEffect(getCreaturePosition(cid),14) doSendAnimatedText(getCreaturePosition(cid),voc.text,49) setPlayerStorageValue(cid,1082,1) else doPlayerSendTextMessage(cid,18,"Voce precisa de 50 Multi Coins para ser Vip.") end else doPlayerSendTextMessage(cid,18,"You need level "..voc.level.." to promote.") end else doPlayerSendTextMessage(cid,18,"Voce ja e Vip.") end return TRUE end e no talkactions.xml ponha a tag de somente god usar
-
function onThink(interval, lastExecution, thinkInterval) local Query = db.getResult("SELECT `id`, `vip_time` FROM `accounts` WHERE `accounts`.`vip` = 1") if Query:getID() == -1 then return true end for i = 1, Query:getRows() do local AccID = Query:getDataInt('id') local VipTime = Query:getDataInt('vip_time') if VipTime >= os.time() then if isVip(cid) then if string.sub(name, 1,6) == "[VIP] " then else db.executeQuery("UPDATE `players` SET `name` = '[VIP] "..name.."' WHERE `id`= " .. nome .. ";") doPlayerSendTextMessage(cid,19,"You go kicked in 10 seconds for update you name.") addEvent(doRemoveCreature,10000,cid) end if string.sub(name, 1,6) == "[VIP] " then db.executeQuery("UPDATE `players` SET `name` = '"..pegarNome(getCreatureName(cid)).."' WHERE `id`= " .. nome .. ";") doPlayerSendTextMessage(cid,19,"You go kicked in 10 seconds for update you name.") addEvent(doRemoveCreature,10000,cid) end db.executeQuery("UPDATE `accounts` SET `vip_time = ".. math.ceil((VipTime - os.time()) / 86400) .." WHERE `accounts`.`id` = ".. AccID .." LIMIT 1;") else db.executeQuery("UPDATE `accounts` SET `vip_time` = 0 WHERE `accounts`.`id` = ".. AccID .." LIMIT 1;") end Query:next() end Query:free() end return true end
-
Este e no script do globalevents
-
function onThink(interval, lastExecution, thinkInterval) local Query = db.getResult("SELECT `id`, `vip_time` FROM `accounts` WHERE `accounts`.`vip` = 1") if Query:getID() == -1 then return true end for i = 1, Query:getRows() do local AccID = Query:getDataInt('id') local VipTime = Query:getDataInt('vip_time') if VipTime >= os.time() then db.executeQuery("UPDATE `players` SET `name` = '[VIP] "..name.."' WHERE `id`= " .. nome .. ";") doPlayerSendTextMessage(cid,19,"You go kicked in 10 seconds for update you name.") addEvent(doRemoveCreature,10000,cid) else if string.sub(name, 1,6) == "[VIP] " then db.executeQuery("UPDATE `players` SET `name` = '"..pegarNome(getCreatureName(cid)).."' WHERE `id`= " .. nome .. ";") doPlayerSendTextMessage(cid,19,"You go kicked in 10 seconds for update you name.") db.executeQuery("UPDATE `accounts` SET `vip_time = ".. math.ceil((VipTime - os.time()) / 86400) .." WHERE `accounts`.`id` = ".. AccID .." LIMIT 1;") else db.executeQuery("UPDATE `accounts` SET `vip_time` = 0 WHERE `accounts`.`id` = ".. AccID .." LIMIT 1;") end Query:next() end Query:free() return true end end
-
Olha guizito eu colokei somente lvl 50 pra passar 51 49 nao irao passar local vocations = {4,8} --- Vocations permitidas. function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) local tpos,v = {x=32368,y=32477,z=8},getThingPos(cid) -- if isInArray(vocations,getPlayerVocation(cid)) then doTeleportThing(cid,tpos) doSendMagicEffect(v,99) else doTeleportThing(cid,fromPosition) doPlayerSendTextMessage(cid,22,'Você não pode descer aqui, escolha a escada certa!\n (Local para knights)') doSendMagicEffect(v,2) return true end if getPlayerLevel(cid) == 50 then doPlayerSendTextMessage(cid,22,'Desculpe Apenas Level 50 pode descer aki') end return true end
-
function onSay(cid, words, param) if(words == "/addvip") then if getPlayerAccess(cid) == 5 then local t = string.explode(param, ",") if not t[2] then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(t[1]) local days = t[2] local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") return TRUE end local daysvalue = days*3600*24 local storageplayer = getPlayerStorageValue(player, 13540) local timenow = os.time() local time = storageplayer <= 0 and (timenow + daysvalue) or (storageplayer + daysvalue) doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Foram adicionados "..days.." dias de VIP no seu character.") setPlayerStorageValue(player, 13540, time) local quantity = math.floor((getPlayerStorageValue(player,13540) - timenow)/(3600*24)) doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Você tem "..quantity.." dias de VIP restantes.") end elseif(words == "/delvip") then if getPlayerAccess(cid) == 5 then local dec = MESSAGE_INFO_DESCR if(param == "") then return TRUE,doPlayerSendTextMessage(cid,18,"Command param required.")end local C,t = {},string.explode(param, ",") C.pos = getPlayerPosition(cid) C.uid = getCreatureByName(t[1]) C.time = ((tonumber(t[2]) == nil) and 1 or tonumber(t[2]))*3600*24 --Tempo da vip por dia. C.days = (tonumber(t[2]) == nil) and 1 or tonumber(t[2]) --Dias de vip. local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") return TRUE end if(isInArray({5, 6, 7, 8}, getPlayerVocation(cid))) then return TRUE end end end end
-
Se puder postar o script ira ajudar como voce seleciono ao topico
-
Tem Duvida De Alguma Coisa Sobre Seu Serv?
tópico respondeu ao SkySeven de SkyLigh em Lixeira Pública
HUWHUEHUEHUEHUEHHHUEEH -
Tem Duvida De Alguma Coisa Sobre Seu Serv?
tópico respondeu ao SkySeven de SkyLigh em Lixeira Pública
/\ boa -
Tem Duvida De Alguma Coisa Sobre Seu Serv?
tópico respondeu ao SkySeven de SkyLigh em Lixeira Pública
lol ai ja e de mais tem cara divulgando fórum aki no xtibia area errada na verdade nem existe area pra isso vai ganhar seu publico -
-- Script SYtem vip 2.0 -- function onSay(cid, words, param) if(words == "!vipdays") then local timenow = os.time() local quantity = math.floor((getPlayerStorageValue(cid, 4003) - timenow)/(24 * 60 * 60)) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. (quantity < 0 and 0 or quantity) .." dias de VIP no seu character.") if getPlayerVocation(cid) <= 4 then doPlayerSetVocation(cid, getPlayerVocation(cid)+4) elseif(words == "/checkvip") then if getPlayerAccess(cid) == 5 then if not param then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end end local player = getPlayerByName(param) if not isPlayer(player) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player "..player.." not found.") end local timenow = os.time() local quantity = math.floor((getPlayerStorageValue(player, 4003) - timenow)/(24 * 60 * 60)) doPlayerPopupFYI(cid, "O jogador tem ".. (quantity < 0 and 0 or quantity) .." dias de VIP no character.") return TRUE end elseif(words == "/addvip") then if getPlayerAccess(cid) == 5 then local t = string.explode(param, ",") if not t[2] then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(t[1]) local name = getCreatureName(player) local days = t[2] local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") return TRUE end local daysvalue = days*3600*24 local storageplayer = getPlayerStorageValue(player, 4003) local timenow = os.time() local time = storageplayer <= 0 and (timenow + daysvalue) or (storageplayer + daysvalue) if string.find(tostring(getCreatureName(pid)),"[[Vip]]") then doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Foram adicionados "..days.." dias de VIP no seu character.") setPlayerStorageValue(player, 4003, time) local quantity = math.floor((getPlayerStorageValue(player,13540) - timenow)/(3600*24)) doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Você tem "..quantity.." dias de VIP restantes.") else setPlayerStorageValue(player, 4003, time) db.executeQuery("UPDATE `players` SET `name` = '[Vip] "..name.."' WHERE `id` = "..getPlayerGUID(player)..";") doRemoveCreature(player) end end elseif(words == "/delvip") then if getPlayerAccess(cid) == 5 then local dec = MESSAGE_INFO_DESCR if(param == "") then return TRUE,doPlayerSendTextMessage(cid,18,"Command param required.")end local C,t = {},string.explode(param, ",") C.pos = getPlayerPosition(cid) C.uid = getCreatureByName(t[1]) C.time = ((tonumber(t[2]) == nil) and 1 or tonumber(t[2]))*3600*24 --Tempo da vip por dia. C.days = (tonumber(t[2]) == nil) and 1 or tonumber(t[2]) --Dias de vip. if(getPlayerStorageValue(C.uid,4003) < C.time)then if(isInArray({5, 6, 7, 8}, getPlayerVocation(cid))) then doPlayerSendTextMessage(cid,dec,'O jogador '..t[1]..' não possui '..C.days..' dias de vip.') else doPlayerSendTextMessage(cid,dec,'Você removeu '..C.days..' dias de vip do player '..t[1]..'.') setPlayerStorageValue(C.uid,4003,getPlayerStorageValue(C.uid,13540)-C.time) end doSendMagicEffect(C.pos, math.random(28,30)) end end return TRUE end end
-
pedido Ajuda . Alavanca Que Faz Sumir Pedras.
pergunta respondeu ao weverton1559 de SkyLigh em Scripts
o script e action function onUse(cid, item) local pos = {x=160,y=154,z=7} -- pos de onde vai sumir a 1 pedra local pos = {x=160,y=154,z=7} -- pos de onde vai sumir a 2 pedra local pos = {x=160,y=154,z=7} -- pos de onde vai sumir a 3 pedra local pos = {x=160,y=154,z=7} -- pos de onde vai sumir a 4 pedra doRemoveItem(getThingfromPos(cid,pos).uid,1) doPlayerSendTextMessage(cid, 23, "PEDRAS LIBERADAS") return true end e no actions.xml poem a tag do item -
Tente com este o da vip http://www.xtibia.com/forum/topic/138512-item-que-adiciona-vip-time/ Npc http://www.xtibia.com/forum/topic/191796-npc-que-usa-outro-item-como-dinheiro/ ai dps se cria os itens e poem no script quanto cada 1 vai adicionar
-
Duvida sanada reportado
-
Qual a versao do map pra mim saber
-
duvida sanada reportado
-
Teteu essa function e que vai detectar se ele e vip ou nao pra o script funcionar ali aonde ta 13545 voce vai tenque por a storage da vip que vai ser em numeros os memos numeros que voce por ali vai por no movements.xml e vai por no tille
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.