Ir para conteúdo

Luga03

Conde
  • Total de itens

    956
  • Registro em

  • Última visita

  • Dias Ganhos

    22

Tudo que Luga03 postou

  1. Falou Td! kkk @Topic Vim aqui pra agradecer dnv kkkkkk vlw ae ta me ajudando mt msm isto!
  2. Man nem sei! E Agora fiquei em dúvida porque um server de pokémon um player usaria as roupas de tibia normal?
  3. tenta isto: function onSay(cid, words, param) local femaleOutfits = { ["citizen"]={136}, ["hunter"]={137}, ["mage"]={138}, ["knight"]={139}, ["nobleman"]={140}, ["summoner"]={141}, ["warrior"]={142}, ["barbarian"]={147}, ["druid"]={148}, ["wizard"]={149}, ["oriental"]={150}, ["pirate"]={155}, ["assassin"]={156}, ["beggar"]={157}, ["shaman"]={158}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324}, ["warmaster"]={335} } local maleOutfits = { ["citizen"]={128}, ["hunter"]={129}, ["mage"]={130}, ["knight"]={131}, ["nobleman"]={132},["summoner"]={133}, ["warrior"]={134}, ["barbarian"]={143}, ["druid"]={144}, ["wizard"]={145}, ["oriental"]={146}, ["pirate"]={151}, ["assassin"]={152}, ["beggar"]={153}, ["shaman"]={154}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325}, ["warmaster"]={336} } local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu addons!"} local param = string.lower(param) if (not isPremium(cid)) then doPlayerSendCancel(cid, "Você nao tem premium account.") return true end if(getPlayerItemCount(cid, 9693) > 0) then if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then doPlayerRemoveItem(cid, 9693, 1) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4]) doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS) if(getPlayerSex(cid) == 0)then doPlayerAddAddons(cid, femaleOutfits[param][1], 3) else doPlayerAddAddons(cid, maleOutfits[param][1], 3) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1]) end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2]) end end
  4. Man que vc quer mudar a posição que o player nasce... você edita isto no config.lua! nesta parte aqui: newPlayerSpawnPosX = 0 -- no lugar de 0 você coloca a PosX que o player vai nascer! newPlayerSpawnPosY = 0 -- aqui você coloca a posY onde o player vai nascer newPlayerSpawnPosZ = 0 -- e aqui você coloca a posZ que é onde o player vai nascer! obs: você pode pegar as pos no próprio rme! e caso você queira apenas mudar a posição do templo de uma city, é só ir no rme abre o mapa e aperta control + t! ai seleciona a cidade que está com o templo errado e muda as pos pra onde vc quizer que seja o templo!
  5. Já entrei em contato! Atualizado! Vaga de 2 programadores e 1 mapper foram pre-enchidos!
  6. Luga03

    Sprite Diamonds

    Eae pessoal beleza??? estou aqui para pedir as sprites de diamonds, como a da pxg ou seila alguma que seja bonita e que não seja a sprites daqueles small diamonds! pode ser em .obd ou em imagem mesmo que eu mesmoc corto! por tanto que tenha os diamonds! kkk
  7. kkkkkk Q Foda! kkkkkk está merda com milho! falto as moscas msm! kkkkkkkkkkkkk comeu milho com leite e achocolatado saiu esta porra do cu! kkkkkkkk obs: desculpa reviver tópico! eu tinha que dizer isto! kkk... karalho deu vontade de cagar agr kkkkkkkk
  8. Ná Pxg Não tem os Centes Né?
  9. Luga03

    Remake dos HDS

    Ae man muito Obrigado!
  10. Blz! Vlw ae @Topic UP up up up UP UP up up
  11. Tem skype?? Vaga de Designer Foi ocupada pelo Frαηciscø søuzα, Tópico Atualizado! ----- Gogo Precisamos de Mapper, Scripter/Programador, Spriter e OTcliente Maker! Tópico Atualizado com Links para mais informações! UP Up ¬¬ UP up up
  12. Configurei tudo Certinho como vc falou e não funcionou! olha: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} 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 creatureSayCallback(cid, type, msg) if(not npcHandler:isFocused(cid)) then return false end local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid local outs = { ["Athletic"] = {24124, 15}, ["Hiker"] = {12424, 20}, } msg = string.lower(msg) local diamond = 2145 if (msgcontains(msg, 'outfit') or msgcontains(msg, 'outfits')) then selfSay("I sell these clothes: {Athletic} and {Hiker}, what you want?", cid) talkState[talkUser] = 2 elseif outs[msg] and talkState[talkUser] == 2 then selfSay("Are you sure you want to buy this outfit?", cid) outfit = outs[tostring(msg)] talkState[talkUser] = 3 elseif msgcontains(msg, 'yes') and talkState[talkUser] == 3 then if getPlayerStorageValue(cid, outfit[1]) <= 0 then if outfit[2] then if doPlayerRemoveItem(cid, diamond, outfit[2]) then setPlayerStorageValue(cid, outfit[1], 1) else selfSay("You need ".. outfit[2] .." Diamonds to buy that clothe!", cid) talkState[talkUser] = 0 return false end else if getPlayerMoney(cid) >= 20000 then doPlayerRemoveMoney(cid, 20000) setPlayerStorageValue(cid, outfit[1], 1) else selfSay("Voce precisa 200dl para comprar essa roupa!", cid) -- Ignore talkState[talkUser] = 0 return false end end else selfSay("You already have that outfit, please choose another outfit...", cid) talkState[talkUser] = 0 return false end selfSay("Ok... Here it is.", cid) talkState[talkUser] = 0 return true elseif msgcontains(msg, 'no') and talkState[talkUser] == 3 then selfSay("So... Please choose another outfit...", cid) talkState[talkUser] = 0 end return true end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  13. Vdd isto é uma boa ideia! Ter dois servidores na base dos mesmos sistemas e tals só que um hard e outro easy como vc falou Beeny! UP
  14. è legalzin... mas vc poderia fazer algo ao apertar as alavancas, tipo ser teleportado para o templo ou pro inicio da quest e tals
  15. Luga03

    Auto loot system

    Cara isto deve ser algum problema com seu tfs ou algum script dando conflito ou até mesmo vc colocou errado! porque eu testei várias vezes e puxava tudo de uma vez!
  16. Não Precisa! Vou elaborar um que vai ser muito interessante! UP
  17. Ae man boa! perece meu rep+!
  18. Luga03

    Remake dos HDS

    Eae pessoal blz?? estou aqui precisando muito das sprites do remake do dinheiro novo! pfv preciso mt! vou deixar uma print para vcs verem! https://scontent-gru1-1.xx.fbcdn.net/hphotos-xtp1/v/t1.0-9/11705207_1517432541871238_6485966854287922871_n.png?oh=512ec1af3d0c96bb2a0389bc0aa23f49&oe=568208F6
  19. estárei acompanhando o server!
  20. Luga03

    /mute Apenas no help

    Agora não dá erro! nem o player é mutado!
  21. Luga03

    /mute Apenas no help

    Eu testei, e ele mutou o player! mas foi em todos os canais e também quando desloga... o player perde o mute!
  22. Luga03

    /mute Apenas no help

    Agora não está acontecendo absolutamente nada!
  23. Luga03

    /mute Apenas no help

    este erro quando eu tento mutar o player: [05/08/2015 11:35:20] [Error - TalkAction Interface] [05/08/2015 11:35:20] data/talkactions/scripts/muteplayer.lua:onSay [05/08/2015 11:35:20] Description: [05/08/2015 11:35:20] (luaSetConditionParam) This function can only be used while loading the script. [05/08/2015 11:35:20] [Error - TalkAction Interface] [05/08/2015 11:35:20] data/talkactions/scripts/muteplayer.lua:onSay [05/08/2015 11:35:20] Description: [05/08/2015 11:35:20] (luaSetConditionParam) This function can only be used while loading the script.
  24. Luga03

    /mute Apenas no help

    Não acontece nada! e quando eu dou reload no server aparece isto: [05/08/2015 11:14:55] [Error - TalkAction Interface] [05/08/2015 11:14:55] data/talkactions/scripts/muteplayer.lua [05/08/2015 11:14:55] Description: [05/08/2015 11:14:55] data/talkactions/scripts/muteplayer.lua:6: attempt to perform arithmetic on global 'time' (a nil value) [05/08/2015 11:14:55] [Warning - Event::loadScript] Cannot load script (data/talkactions/scripts/muteplayer.lua)
  25. Luga03

    /mute Apenas no help

    Agora está dando este erro: [05/08/2015 10:59:19] [Error - TalkAction Interface] [05/08/2015 10:59:19] data/talkactions/scripts/muteplayer.lua:onSay [05/08/2015 10:59:19] Description: [05/08/2015 10:59:19] (luaCreateConditionObject) This function can only be used while loading the script. [05/08/2015 10:59:19] [Error - TalkAction Interface] [05/08/2015 10:59:19] data/talkactions/scripts/muteplayer.lua:onSay [05/08/2015 10:59:19] Description: [05/08/2015 10:59:19] (luaSetConditionParam) This function can only be used while loading the script. [05/08/2015 10:59:19] [Error - TalkAction Interface] [05/08/2015 10:59:19] data/talkactions/scripts/muteplayer.lua:onSay [05/08/2015 10:59:19] Description: [05/08/2015 10:59:19] (luaSetConditionParam) This function can only be used while loading the script. [05/08/2015 10:59:19] [Error - TalkAction Interface] [05/08/2015 10:59:19] data/talkactions/scripts/muteplayer.lua:onSay [05/08/2015 10:59:19] Description: [05/08/2015 10:59:19] (luaDoAddCondition) Condition not found
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...