-
Total de itens
1685 -
Registro em
-
Última visita
Tudo que SkyDarkyes postou
-
Não man,seria tipo uma arvore de natal,quando o player clissase nela,ele ganhava '-'
-
Bom gostaria de um script de action,a cada x lvl ele ganha x item e x quantidade exemplo LVL 50 10CC .....
-
Man,vai posta pra download o site ou não?'-'
-
Ah,era esse mesmo que eu queria retirar,obrigado.
-
Esse aqui,você sabe <?xml version="1.0" encoding="UTF-8"?> <mod name="peeper" version="1.0" author="slawkens" contact="slawkens@gmail.com" enabled="yes"> <config name="peeper-config"><![CDATA[ -- anonymously or display peeper name? anonymous = "no" -- ignore players with access (will not show message when they look on someone) hiddenAccess = 3 -- message color (type) messageType = MESSAGE_STATUS_DEFAULT ]]></config> <event type="look" name="peeper-event" event="script"><![CDATA[ domodlib('peeper-config') local config = { anonymous = getBooleanFromString(anonymous), hiddenAccess = hiddenAccess, messageType = messageType } function onLook(cid, thing, position, lookDistance) if(isPlayer(thing.uid) and getPlayerAccess(cid) < config.hiddenAccess) then doPlayerSendTextMessage(thing.uid, config.messageType, (config.anonymous and "Someone" or getPlayerName(cid)) .. " is looking at you.") end return true end ]]></event> <event type="login" name="peeper-login" event="buffer"><![CDATA[ registerCreatureEvent(cid, "peeper-event") _result = true ]]></event> </mod>
-
Para que serve esse script,é importante? function onOutfit(cid, old, current) if current.lookType == 372 then doSendMagicEffect(getCreaturePosition(cid), 5) end return true end
-
Vlw gaby,deu certo.
-
@Edit vlw gabi,deu certo
-
Eu não vi nas regras do fórum,se tiver manda via PM,estamos desviando do tópico.
-
Precisa xingar? essa é o ultimo aviso que lhe dou em relação ao seu comportamento aqui dentro do fórum, da próxima vez que houver algo do tipo novamente você toma ban, ok? @Topic Dê uma explicação melhor do que você quer. Abç. Chinguei o tópico e não membros,pelo que eu sei não é proibido ^^ @GustavoCastilhoSim isso mesmo
-
TNC,TÓPICO SÓ BUGA DESGRAÇA @ARRUMADO
-
Tenho esse sistema de points function onSay(cid, words, param) if(words == "!points") then return doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você tem "..getPoints(cid).." Points.") elseif(words == "!rankpoints") then local max_players,str = 20,"" str = "--[ RANK POINTS ]--\n\n" query = db.getResult("SELECT `name`, `points` FROM `players` WHERE `points` > -1 AND `id` > 6 AND `group_id` < 2 ORDER BY `points` DESC, `name` ASC;") if (query:getID() ~= -1) then k = 1 while true do str = str .. "\n " .. k .. ". " .. query:getDataString("name") .. " - [" .. query:getDataInt("points") .. "]" k = k + 1 if not(query:next()) or k > max_players then break end end query:free()end if str ~= "" then doShowTextDialog(cid,6500, str) end elseif(words == "/addpoints") then if getPlayerAccess(cid) == 5 then local t = string.explode(param, ",") if not t[1] or not t[2] then return TRUE,doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(t[1]) local points = t[2] local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then return TRUE,doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") end doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "você adicionou "..points.." Points do jogador "..t[1]) doPlayerSendTextMessage(player, MESSAGE_STATUS_CONSOLE_ORANGE, "Foram adicionados "..points.." Points no seu character.") addPoints(player,points) doPlayerSendTextMessage(player, MESSAGE_STATUS_CONSOLE_ORANGE, "Você agora tem "..getPoints(player).." Points.") end elseif(words == "/delpoints") then if getPlayerAccess(cid) == 5 then local t = string.explode(param, ",") if not t[1] or not t[2] then return TRUE,doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(t[1]) local points = t[2] local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then return TRUE,doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "você removeu "..points.." Points do jogador "..t[1]) doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Foram removidos "..points.." Points do seu character.") removePoints(player,points) doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "Você agora tem "..getPoints(player).." Points.") end elseif(words == "/setpoints") then if getPlayerAccess(cid) == 5 then local t = string.explode(param, ",") if not t[1] or not t[2] then return TRUE,doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Invalid param specified.") end local player = getPlayerByName(t[1]) local points = t[2] local pid = getPlayerByNameWildcard(t[1]) if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then return TRUE,doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player with this name doesn\'t exist or is offline.") end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Agora o jogador "..t[1].." tem "..points.." Points no seu character.") doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, "agora você tem "..points.." Points do seu character.") setPoints(player,points) end end return TRUE end Gostaria de uma talkaction exemplo !Item O ganhar recebe o X Item e X quantidade E perde X points
-
Acho que o comando é igual !Spells,não precisa configurar ¬¬'
-
[Tutorial] Como criar uma nova vocation no seu otserv do RobinHood
tópico respondeu ao tutumelo de SkyDarkyes em Tutoriais para Iniciantes
/\ Se pá tenta ve o tutorial do roksas,nao sei se tem,mas tenta- 16 respostas
-
- ajuda do sky darkyes
- que me ajudou
- (e 2 mais)
-
É esse mesmo ¬¬'
-
Falto só umas imagens,fora isso está BOM
-
Eu acho que você fez alguma coisa errada no script em -'
-
[Encerrado] sistema de graduação
tópico respondeu ao matheuspeixoto12 de SkyDarkyes em Tópicos Sem Resposta
Ah tenta ve no RME,+- sl,nunca mechi nos tile -
[Encerrado] sistema de graduação
tópico respondeu ao matheuspeixoto12 de SkyDarkyes em Tópicos Sem Resposta
Pasta do ot/data/creaturescripts/script/showvoc.lua La você edita as graduações,tipo Oinin,Akatsuki etc... -
[Encerrado] sistema de graduação
tópico respondeu ao matheuspeixoto12 de SkyDarkyes em Tópicos Sem Resposta
Sim -
[Encerrado] sistema de graduação
tópico respondeu ao matheuspeixoto12 de SkyDarkyes em Tópicos Sem Resposta
Só copia os npcs,e muda alguma coisa. -
[Encerrado] sistema de graduação
tópico respondeu ao matheuspeixoto12 de SkyDarkyes em Tópicos Sem Resposta
Se quiser ajudo apenas a add + graduações,ponhar missões,demora -
Como man lol,'-'
-
pedido [Encerrado] Preciso de um items.xml 8.54 Full
tópico respondeu ao mylorc de SkyDarkyes em Tópicos Sem Resposta
/\ Detalhes de que man? Ele quer um items.xml full -
Hum,vou baixar e testar.
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.