Ir para conteúdo

Rikikajimo

Membro
  • Registro em

  • Última visita

Tudo que Rikikajimo postou

  1. Rikikajimo postou uma resposta no tópico em Formação de Equipe
    Eu estou pensando pelo menos de começo fazer um serv sem prescisar pagar mas se ele fizer um sucesso tipo uns 50 players eu to querendo por dedicado e por itens pra vender e tals donate no caso/ donate ja tem mas se consegue emeventos
  2. Rikikajimo postou uma resposta no tópico em Formação de Equipe
    Oi n prescisa passar varias informações so quero um spellmaker q saiba criar spell massas e q tbm saiba por aquilo q em vez de ser dano max 100 e minimo 50 saiba por pra tipo lvl 100 hita 500 ja no lvl 1000 hita 5000 por ex com porcentagem acho q seria assim n faz mal se o spellmaker seja novo n me importo ja q tbm sou novo e ainda n sei se o ot sera dedicado mas eu ja sei deichar on e pelo q vi ate uns 50 100 player acho q o ot fica on sem lag
  3. n era isso de mc mas vlw pela ajuda REP+ e eu tive 1 ideia pra n prescisar disso vo fazer 1 war q pra pegar os itens ou faz 1 quest bem chatinha ou fica matando monstros ate pegar x grana pra comprar :3 acho q é uma inovaçao ja q nunca vi um war assim XD
  4. sim eu matei mc e oq e TFS n conheço siglas >.<
  5. eu queria q o player pudesse comprar e n vender por isso ficou errado agr entendi vlw REP+
  6. n deu nenhum erro so nao funcionou
  7. local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10) doPlayerAddBlessing(cid, 1) doPlayerAddBlessing(cid, 2) doPlayerAddBlessing(cid, 3) doPlayerAddBlessing(cid, 4) doPlayerAddBlessing(cid, 5) end local accountManager = getPlayerAccountManager(cid) if(accountManager == MANAGER_NONE) then local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage if(lastLogin > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str) str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "." else str = str .. " Please choose your outfit." doPlayerSendOutfitWindow(cid) end doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str) elseif(accountManager == MANAGER_NAMELOCK) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?") elseif(accountManager == MANAGER_ACCOUNT) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.") end if(not isPlayerGhost(cid)) then doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT) end registerCreatureEvent(cid, "kill") registerCreatureEvent(cid, "onPrepareDeath") registerCreatureEvent(cid, "PlayerLogout") registerCreatureEvent(cid, "Reward") registerCreatureEvent(cid, "DeathBroadcast") registerCreatureEvent(cid, "onPrepareDeath") registerCreatureEvent(cid, "Idle") if(config.useFragHandler) then registerCreatureEvent(cid, "SkullCheck") end registerCreatureEvent(cid, "ReportBug") return true end
  8. 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 local shopModule = ShopModule:new() npcHandler:addModule(shopModule) shopModule:addBuyableItem({'spellbook'}, 2175, 150, 'spellbook') shopModule:addBuyableItem({'magic lightwand'}, 2163, 400, 'magic lightwand') shopModule:addBuyableItem({'small health'}, 8704, 20, 1, 'small health potion') shopModule:addBuyableItem({'health potion'}, 7618, 45, 1, 'health potion') shopModule:addBuyableItem({'mana potion'}, 7620, 50, 1, 'mana potion') shopModule:addBuyableItem({'strong health'}, 7588, 100, 1, 'strong health potion') shopModule:addBuyableItem({'strong mana'}, 7589, 80, 1, 'strong mana potion') shopModule:addBuyableItem({'great health'}, 7591, 190, 1, 'great health potion') shopModule:addBuyableItem({'great mana'}, 7590, 120, 1, 'great mana potion') shopModule:addBuyableItem({'great spirit'}, 8472, 190, 1, 'great spirit potion') shopModule:addBuyableItem({'ultimate health'}, 8473, 310, 1, 'ultimate health potion') shopModule:addBuyableItem({'antidote potion'}, 8474, 50, 1, 'antidote potion') shopModule:addSellableItem({'normal potion flask', 'normal flask'}, 7636, 5, 'empty small potion flask') shopModule:addSellableItem({'strong potion flask', 'strong flask'}, 7634, 10, 'empty strong potion flask') shopModule:addSellableItem({'great potion flask', 'great flask'}, 7635, 15, 'empty great potion flask') shopModule:addBuyableItem({'blank rune'}, 2260, 10, 1, 'blank rune') shopModule:addBuyableItem({'instense healing'}, 2265, 95, 1, 'intense healing rune') shopModule:addBuyableItem({'ultimate healing'}, 2273, 175, 1, 'ultimate healing rune') shopModule:addBuyableItem({'magic wall'}, 2293, 350, 3, 'magic wall rune') shopModule:addBuyableItem({'wild growth'}, 2269, 350, 2, 'wild growth rune') shopModule:addBuyableItem({'destroy field'}, 2261, 45, 5, 'destroy field rune') shopModule:addBuyableItem({'light magic missile'}, 2287, 40, 10, 'light magic missile rune') shopModule:addBuyableItem({'heavy magic missile'}, 2311, 120, 5, 'heavy magic missile rune') shopModule:addBuyableItem({'great fireball'}, 2304, 180, 3, 'great fireball rune') shopModule:addBuyableItem({'explosion'}, 2313, 250, 3, 'explosion rune') shopModule:addBuyableItem({'sudden death'}, 2268, 350, 3, 'sudden death rune') shopModule:addBuyableItem({'paralyze'}, 2278, 700, 2, 'paralyze rune') shopModule:addBuyableItem({'animate dead'}, 2316, 375, 1, 'animate dead rune') shopModule:addBuyableItem({'convince creature'}, 2290, 80, 1, 'convince creature rune') shopModule:addBuyableItem({'chameleon'}, 2291, 210, 1, 'chameleon rune') shopModule:addBuyableItem({'desintegrate'}, 2310, 80, 3, 'desintegreate rune') shopModule:addBuyableItemContainer({'bp sd'}, 2003, 2268, 7020, 50, 'backpack of sudden deaths') shopModule:addBuyableItemContainer({'bp uh'}, 2002, 2268, 7021, 50, 'backpack of ultimate healing') shopModule:addBuyableItemContainer({'bp hp'}, 2000, 7618, 900, 1, 'backpack of health potions') shopModule:addBuyableItemContainer({'bp mp'}, 2001, 7620, 1000, 1, 'backpack of mana potions') shopModule:addBuyableItemContainer({'bp shp'}, 2000, 7588, 2000, 1, 'backpack of strong health potions') shopModule:addBuyableItemContainer({'bp smp'}, 2001, 7589, 1600, 1, 'backpack of strong mana potions') shopModule:addBuyableItemContainer({'bp ghp'}, 2000, 7591, 3800, 1, 'backpack of great health potions') shopModule:addBuyableItemContainer({'bp gmp'}, 2001, 7590, 2400, 1, 'backpack of great mana potions') shopModule:addBuyableItemContainer({'bp gsp'}, 1999, 8472, 3800, 1, 'backpack of great spirit potions') shopModule:addBuyableItemContainer({'bp uhp'}, 2000, 8473, 6200, 1, 'backpack of ultimate health potions') shopModule:addBuyableItem({'wand of vortex', 'vortex'}, 2190, 500, 'wand of vortex') shopModule:addBuyableItem({'wand of dragonbreath', 'dragonbreath'}, 2191, 1000, 'wand of dragonbreath') shopModule:addBuyableItem({'wand of decay', 'decay'}, 2188, 5000, 'wand of decay') shopModule:addBuyableItem({'wand of draconia', 'draconia'}, 8921, 7500, 'wand of draconia') shopModule:addBuyableItem({'wand of cosmic energy', 'cosmic energy'}, 2189, 10000, 'wand of cosmic energy') shopModule:addBuyableItem({'wand of inferno', 'inferno'}, 2187, 15000, 'wand of inferno') shopModule:addBuyableItem({'wand of starstorm', 'starstorm'}, 8920, 18000, 'wand of starstorm') shopModule:addBuyableItem({'wand of voodoo', 'voodoo'}, 8922, 22000, 'wand of voodoo') shopModule:addBuyableItem({'snakebite rod', 'snakebite'}, 2182, 500, 'snakebite rod') shopModule:addBuyableItem({'moonlight rod', 'moonlight'}, 2186, 1000, 'moonlight rod') shopModule:addBuyableItem({'necrotic rod', 'necrotic'}, 2185, 5000, 'necrotic rod') shopModule:addBuyableItem({'northwind rod', 'northwind'}, 8911, 7500, 'northwind rod') shopModule:addBuyableItem({'terra rod', 'terra'}, 2181, 10000, 'terra rod') shopModule:addBuyableItem({'hailstorm rod', 'hailstorm'}, 2183, 15000, 'hailstorm rod') shopModule:addBuyableItem({'springsprout rod', 'springsprout'}, 8912, 18000, 'springsprout rod') shopModule:addBuyableItem({'underworld rod', 'underworld'}, 8910, 22000, 'underworld rod') shopModule:addSellableItem({'wand of vortex', 'vortex'}, 2190, 500, 'wand of vortex') shopModule:addSellableItem({'wand of dragonbreath', 'dragonbreath'}, 2191, 1000, 'wand of dragonbreath') shopModule:addSellableItem({'wand of decay', 'decay'}, 2188, 5000, 'wand of decay') shopModule:addSellableItem({'wand of draconia', 'draconia'}, 8921, 7500, 'wand of draconia') shopModule:addSellableItem({'wand of cosmic energy', 'cosmic energy'}, 2189, 10000, 'wand of cosmic energy') shopModule:addSellableItem({'wand of inferno', 'inferno'}, 2187, 15000, 'wand of inferno') shopModule:addSellableItem({'wand of starstorm', 'starstorm'}, 8920, 18000, 'wand of starstorm') shopModule:addSellableItem({'wand of voodoo', 'voodoo'}, 8922, 22000, 'wand of voodoo') shopModule:addSellableItem({'snakebite rod', 'snakebite'}, 2182, 500, 'snakebite rod') shopModule:addSellableItem({'moonlight rod', 'moonlight'}, 2186, 1000, 'moonlight rod') shopModule:addSellableItem({'necrotic rod', 'necrotic'}, 2185, 5000, 'necrotic rod') shopModule:addSellableItem({'northwind rod', 'northwind'}, 8911, 7500, 'northwind rod') shopModule:addSellableItem({'terra rod', 'terra'}, 2181, 10000, 'terra rod') shopModule:addSellableItem({'hailstorm rod', 'hailstorm'}, 2183, 15000, 'hailstorm rod') shopModule:addSellableItem({'springsprout rod', 'springsprout'}, 8912, 18000, 'springsprout rod') shopModule:addSellableItem({'underworld rod', 'underworld'}, 8910, 22000, 'underworld rod') shopModule:addSellableItem({'fire sword', 'sword'}, 2392, 50000, 'fire sword') shopModule:addSellableItem({'fire axe', 'axe'}, 2432, 50000, 'fire axe') shopModule:addSellableItem({'fire club', 'club'}, 8927, 50000, 'fire club') shopModule:addSellableItem({'demon helmet', 'helmet'}, 2493, 50000, 'demon helmet') shopModule:addSellableItem({'demon armor', 'armor'}, 2494, 50000, 'demon armor') shopModule:addSellableItem({'demon legs', 'legs'}, 2495, 50000, 'demon legs') shopModule:addSellableItem({'demon shield', 'shield'}, 2520, 50000, 'demon shield') shopModule:addSellableItem({'regen boots', 'boots'}, 2640, 50000, 'regen boots') shopModule:addSellableItem({'Free Staff', 'staff'}, 2184, 50000, 'Free Staff') 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 items = {[1] = 2190, [2] = 2182, [5] = 2190, [6] = 2182} if(msgcontains(msg, 'first rod') or msgcontains(msg, 'first wand')) then if(isSorcerer(cid) or isDruid(cid)) then if(getPlayerStorageValue(cid, 30002) == -1) then selfSay('So you ask me for a {' .. getItemNameById(items[getPlayerVocation(cid)]) .. '} to begin your advanture?', cid) talkState[talkUser] = 1 else selfSay('What? I have already gave you one {' .. getItemNameById(items[getPlayerVocation(cid)]) .. '}!', cid) end else selfSay('Sorry, you aren\'t a druid either a sorcerer.', cid) end elseif(msgcontains(msg, 'yes')) then if(talkState[talkUser] == 1) then doPlayerAddItem(cid, items[getPlayerVocation(cid)], 1) selfSay('Here you are young adept, take care yourself.', cid) setPlayerStorageValue(cid, 30002, 1) end talkState[talkUser] = 0 elseif(msgcontains(msg, 'no') and isInArray({1}, talkState[talkUser]) == TRUE) then selfSay('Ok then.', cid) talkState[talkUser] = 0 end return true end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new()) esse aie o meu script do dark hodo
  9. deu errado
  10. queria q quanto um player matar o outro ele ganhe 500gold coins mas n sei como fazer isso alguem ajuda ?
  11. eu queria por alguns itens para vender no dark hodo mas n consegui eu fui la na pasta dos npc e fui no dark hodo vi q ele tinha os itens pra vender na pasta runes.lua au fui la e pus isso no final dela shopModule:addSellableItem({'fire sword', 'sword'}, 2392, 50000, 'fire sword') shopModule:addSellableItem({'fire axe', 'axe'}, 2432, 50000, 'fire axe') shopModule:addSellableItem({'fire club', 'club'}, 8927, 50000, 'fire club') shopModule:addSellableItem({'demon helmet', 'helmet'}, 2493, 50000, 'demon helmet') shopModule:addSellableItem({'demon armor', 'armor'}, 2494, 50000, 'demon armor') shopModule:addSellableItem({'demon legs', 'legs'}, 2495, 50000, 'demon legs') shopModule:addSellableItem({'demon shield', 'shield'}, 2520, 50000, 'demon shield') shopModule:addSellableItem({'regen boots', 'boots'}, 2640, 50000, 'regen boots') shopModule:addSellableItem({'Free Staff', 'staff'}, 2184, 50000, 'Free Staff') entrei no servidor e n mudou nada alguem poderia me dizer oq esta errado ?
  12. Rikikajimo postou uma resposta no tópico em Suporte Tibia OTServer
    Ola Alguem poderia me passar 1 OT 100% war ? eu quero um com um mapa n muito grande de preferencia e q os plyers criem seus chares e comecem lvl 80 ja com itens e q a cada morte eles ganhem dinheiro e q tenho intes para comprar, itens mais tops e claro xd Alguem poderia passa eu tentei procurar mas meu pc ta muito ruim e mal consigo usar o tibiaking entao se alguem puder me ajudar agradeceria
  13. Rikikajimo postou uma resposta no tópico em Suporte Tibia OTServer
    Eu abri as portas 7171 e 7172 do roteador precisa abrir mais alguma porta para eu logar no meu tibia ? já abri do roteador e do firewall do meu PC mas eu usei 1 site http://www.yougetsignal.com/tools/open-ports/ e ele diz q as portas estão fechadas mas quando eu vou no meu roteador as portas estão abertas e ativadas alguém pode dar 1 ajuda ?
  14. Vlw Vou Testar Se Funcionar REP+
  15. Rikikajimo postou uma resposta no tópico em Formação de Equipe
    parou ?
  16. voce saberia me dizer como fazer 1 skill q da por exemplo 20 ataques q hitam 300 cada 1 e q usando essa magia eu posso "controlar" o atacado como se fosse o spells blood control de avatar se e q vc ja viu 1 mas pra min tentar explicar a cada hit q a skill der e empurrar eu posso escolher para onde empurra con control + setas pode me ajudar nisso quero por no meu ot
  17. Rikikajimo postou uma resposta no tópico em Suporte Tibia OTServer
    tem algum lugar na pasta do meu ot pra min ver os effects quero trocar as spells mas n sei onde fica os effects e pelo jogo ja tentei usar /x /z e /y mas nenhum funciona pode me ajudar
  18. gostei muito do anel mas quando eu ponho no movements ele buga diz q da erro e n consigo abrir o serv tem como voce editar o movements para min para ver se eu não estou fazendo nada de errado ?
  19. voce poderia me dar 1 exemplo n sou mto bom com scripts ainda :\
  20. vlw se funcionar REP+ @edit testei na versão 8.6 mas n funcionou :\
  21. olá, não sei se você ja viu em algum server ou algo do tipo em algum lugar mas eu não consegui achar então se alguem puder me ajudar Eu queria fazer 1 comando ou spell como se fosse aquela da kunai do minato de teleport do anime mas eu quero pra por no tibia normal usando o item ItemID: [2379]. dai tipo clica com botao direito no item e clica no chao dai se teleporta para o sqm q eu cliquei eu não tenho nem ideia de como fazer algo assim entao se alguem poder me ajudar agradeço
  22. gostei do anel da versão 2 mas achei meio confuso a parte inicial eu n entendi em q lugar tem qpor pode me ajudar
  23. Rikikajimo postou uma resposta no tópico em Scripts tfs 0.4 (OLD)
    adorei oque a magia faz so quero ver eu conseguir botar no meu ot :3 vo tentar vlw REP+ @edit Dar ReP+ amanhã pq hoje n da

Informação Importante

Confirmação de Termo