vamos participa da comunidade

http://www.orkut.com/Community.aspx?cmm=46518006

Quem sou eu

O furia e o que eu posso dizer para ti ajuda como for em criaçao de ots e de filme tira suas duvidas e mais pra frente tera mais

O melhores ot do mundo:

Furias :<muito rox sor baixando para ver.criado por gabriel rodrigues silva e tambem criador desse site )
Download do ot serveaqui.

Correa Servegame :criado por um cara ai muito rox ele e o dono do correa mapa yure\ )
Download do ot serveaqui.

Mapa editor 8.0,iten editor 8.0,OtSTriad146

Mapa editor 8.0 e queser ele sor basta )
clicaaqui.

iten editor 8.0 queser ele sor basta )
clicaaqui.

OtSTriad146 para cria site(ele e para roda site ele e melhor que o EasyPHP )
basta clica aqui.

que versao de ots serves vc mais gostao

sexta-feira, 4 de janeiro de 2008

Ae... Bem... Não sei muito bem como explicar direito o "como se faz" mas tenho uma maneira mais pratica de se fazer ela!

1 passo: Abra a pasta do seu OT e vá em "data\actions\scripts"

2 passo: Copie e Cole um Arquivo LUA (Todas as scripts de actions sao LUA)

3 passo: Renomeie o arquivo para "mfrune" (letras minusculas)

4 passo: Abre o arquivo que foi renomeiado e apague tudo o que tiver escrito

5 passo: Apos ter pagado cole isso dentro do arquivo:

-- New MF rune --
function onUse(cid, item, frompos, item2, topos)
playerpos = {x=topos.x, y=topos.y, z=topos.z, stackpos=253}
player = getThingfromPos(playerpos)
ml = getPlayerMagLevel(cid)
lvl = getPlayerLevel(cid)
formula = math.random(((lvl+ml)*2)-(lvl-ml))
if item2.itemid == 1 and ml >= 2 then
doSendMagicEffect(playerpos,1)
doPlayerAddMana(player.uid,formula)
doPlayerSay(player.uid,"Ahhhhhh",2)
if item.type > 1 then
doChangeTypeItem(item.uid,item.type-1)
else
doRemoveItem(item.uid,1)
end
end
if item2.itemid == 1 and ml <= 1 then
doSendMagicEffect(frompos,2)
doPlayerSendCancel(cid,"You dont Have Magic Level to use this rune.")
end
if item2.itemid >= 2 then
doPlayerSendCancel(cid,"You can only use this rune in you or in players.")
doSendMAgicEffect(frompos,2)
end
return 1
end

6 passo: Agora volte 1 pasta (voce entrara em "data\actions")

7 passo: Abra o arquivo actions.XML

8 passo: Adicione um pouquinho antes de:


Isso:


9 passo: Agora volte para a pasta anterior (você estara em data)

10 passo: Entre na pasta "spells\rune"

11 passo: Copie e cole um arquivo LUA

12 passo: Renomeie para "mana rune" (em minusculo)

13 passo: Abra o aquivo e delete tudo oque esta escrito nele

14 passo: Adicione isso:

--doTargetMagic
-- attackType: Type of attack.
-- cid: creature id.
-- Targetpos: Target position.
-- animationEffect: Projectile animation.
-- hitEffect: Effect to show when spell hits a creature.
-- damageEffect: Effect to show when spell hits a player.
-- animationColor: Color of the text that is shown above the player when hit.
-- offensive: Indicates if the spell is a healing/attack spell.
-- drawblood: Determines if the spell causes blood splash.
-- minDmg: Minimal damage.
-- maxDmg: Maximum damage.
-- returns true if the spell was casted.

attackType = ATTACK_NONE
animationEffect = NM_ANI_NONE

hitEffect = NM_ME_NONE
damageEffect = NM_ME_MAGIC_ENERGIE
animationColor = GREEN
offensive = false
drawblood = false

ManaRuneObject = MagicDamageObject(attackType, animationEffect, hitEffect, damageEffect, animationColor, offensive, drawblood, 0, 0)

function onCast(cid, creaturePos, level, maglv, var)
centerpos = {x=creaturePos.x, y=creaturePos.y, z=creaturePos.z}

ManaRuneObject.minDmg = (level * 2 + maglv * 3) * 2.2
if ManaRuneObject.minDmg < 200 then
ManaRunegObject.minDmg = 200
end

ManaRuneObject.maxDmg = (level * 5 + maglv * 80) * 3
if ManaRuneObject.maxDmg < 300 then
ManaRuneObject.maxDmg = 300
end

return doTargetMagic(cid, centerpos, ManaRuneObject:ordered())
end


15 passo: Salve e feche (claro)

16 passo: Volte uma pasta (você estará em "data\spells")

17 passo: Abra o arquivo "spells.xml"

18 passo: Aperte Ctrl+F e procure por:
Runes

(não make runes, so runes)

19 passo: Bote na linha de Baixo isso:



20 passo: Agora abra va para a pasta data

21 passo: Va na pasta npc (voce estara em data\npc)

22 passo: Procure por lá e abra o NPC que vende runas no seu OT

23 passo: Procure algo que esteja mais ou menos assim:

script="data/npc/scripts/runes.lua"

e verifique se esta ecrito runes em:

script="data/npc/scripts/runes.lua"

24 passo: Se não estiver bote:

script="data/npc/scripts/runes.lua"

25 passo: após ter visto isso abra a pasta que esta na pasta dos npcs chamada "scripts"

26 passo: Copie e cole um arquivo LUA e renomeie para runes (se ja tiver um assim nem pressisa copiar e colar)

27 passo: Abra o arquivo e apague tudo

28 passo: Cole dentro do arquivo isso:

-- Respawn position set
--ox = 44
--oy = 5
--oz = 6

focus = 0
talk_start = 0
target = 0
following = false
attacking = false

function onThingMove(creature, thing, oldpos, oldstackpos)

end


function onCreatureAppear(creature)

end


function onCreatureDisappear(cid, pos)
if focus == cid then
selfSay('Good bye then.')
focus = 0
talk_start = 0
end
end


function onCreatureTurn(creature)

end


function msgcontains(txt, str)
return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)'))
end


function onCreatureSay(cid, type, msg)
msg = string.lower(msg)

if ((string.find(msg, '(%a*)hi(%a*)')) and (focus == 0)) and getDistanceToCreature(cid) < 3 then
selfSay('Hello ' .. creatureGetName(cid) .. '! I sell hmms (3000gps), uhs (5000gps), gfbs (4000gps), explosions (4000gps), sds (6000gps), mana rune (8000gp) Tudo é 100x')
focus = cid
talk_start = os.clock()

elseif string.find(msg, '(%a*)hi(%a*)') and (focus ~= cid) and getDistanceToCreature(cid) < 3 then
selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.')

elseif msgcontains(msg, '100 hmm') and focus == cid then
buy(cid,2311,100,3000)
talk_start = os.clock()

elseif msgcontains(msg, '100 uh') and focus == cid then
buy(cid,2273,100,5000)
talk_start = os.clock()
elseif msgcontains(msg, '100 gfb') and focus == cid then
buy(cid,2304,100,4000)

elseif msgcontains(msg, '100 explosion') and focus == cid then
buy(cid,2313,100,4000)
talk_start = os.clock()


elseif msgcontains(msg, '100 sd') and focus == cid then
buy(cid,2268,100,6000)
talk_start = os.clock()

elseif msgcontains(msg, 'blank') and focus == cid then
buy(cid,2260,1,5)
talk_start = os.clock()
elseif msgcontains(msg, 'mana rune') and focus == cid then
buy(cid,2270,100,8000)
talk_start = os.clock()

elseif string.find(msg, '(%a*)bye(%a*)') and focus == cid and getDistanceToCreature(cid) < 3 then
selfSay('Good bye, ' .. creatureGetName(cid) .. '!')
focus = 0
talk_start = 0
end
end


function onCreatureChangeOutfit(creature)

end


function onThink()
if (os.clock() - talk_start) > 30 then
if focus > 0 then
selfSay('Next Please...')
end
focus = 0
end
end

function onThink()
if (os.clock() - talk_start) > 30 then
if focus > 0 then
selfSay('Next Please...')
end
focus = 0
end
if focus ~= 0 then
if getDistanceToCreature(focus) > 5 then
selfSay('Good bye then.')
focus = 0
end
end
end

function onThink()
if (os.clock() - talk_start) > 30 then
if focus > 0 then
selfSay('Next Please...')
end
focus = 0
end
if focus ~= 0 then
if getDistanceToCreature(focus) > 5 then
selfSay('Good bye then.')
focus = 0
end
end
if focus == 0 then
cx, cy, cz = selfGetPosition()
randmove = math.random(1,20)
if randmove == 1 then
nx = cx + 1
end
if randmove == 2 then
nx = cx - 1
end
if randmove == 3 then
ny = cy + 1
end
if randmove == 4 then
ny = cy - 1
end
if randmove >= 5 then
nx = cx
ny = cy
end
moveToPosition(nx, ny, cz)
--summons = 30
--summons2 = 30
end
end

29 passo: Agora feche e salve o arquivo e abra o OT

30 passo: Entre no OT e procure o NPC que vende Runas e diga:
"hi" ; "mana rune"

Ele ira vender a runa de mana e use-a em você e teste se está pegando

BY FERRUGEM
Poste aqui qualquer problema que eu tento resolver
Testado em: MTK, Neverland e YurOts
Flws

Nenhum comentário:

otserves

Tenebra War 8.0 Aí retirei esse OT de um outro fórum ae! Acho que estou fazendo bem trazer OT´s de outros lugares aqui para o Site... Se alguem estiver contra isso só postar aí , crítica é sempre bom receber também Chega de bla bla blá O Arquivo está limpo se quiserem dar uma scaniada ae! )
Download do otserve clicando aqui.

nome do otserveLithOTS 0.1.5 Party System ( Remere, Xidaozu, LooS!k, Lithium ) /clean ( Xidaozu, Lithium ) Cap Configurable in config.lua ( Lithium) All Spells 8.0 Works ( Lithium ) All NPC Spawned and works ( Lithium ) Addon NPC ( Lithium, Jiddo ) /addon1 or /addon2 ( master-m, Lithium ) own map fully configurated ( Lithium ) Fixed all amunations and distance weapons ( Lithium) LithOTS 0.1.6 - Improved serversave code alot (Talaturen) - Alot of stringstreams has been replaced with char (Talaturen) - SqLite connection is now tested on startup (Talaturen) - Fixed many issues with the banishment system (Talaturen) - learnSpell function added to the NPC system (Talaturen) - FreeForAll PVP Arena example written in creaturescripts (Talaturen) - Fixed an issue with the function checking if offline player has premium account (Talaturen) - Fixed an issue with fields and monsters (Talaturen) - Skills should now save even if triggers are not added (Talaturen) - Fixed a crash with !setmotd (Talaturen) - Possible to see invisible creatures for gamemasters/gods (BlackOnix) - Fixed an issue with Actions::useItemEx delay check (Talaturen) - All XML files are now using UTF-8 encoding (Talaturen) - Fixed an issue with keys & locked doors (Talaturen) - Max level 638 limit broken (Talaturen) - Death lose percent configurable (Kiper) - Fixed an issue with deathLosePercent (Talaturen) - Fixed some issues with highscore book updating (Talaturen) - LuaSQL is now enabled in Windows (Talaturen) - More detailed error message when reloading all in WinGUI (Talaturen) - Clean command (Kiper) - Mapcleaning at serversave configurable (Kiper) - Reorganized config (Talaturen) - PVP Arena removed, will be added back in the future (Talaturen) - broadcastMessage(message) has been changed to broadcastMessage(message, messageType) (Talaturen) - Fixed an issue with furniture destroying (Talaturen) - Fixed an issue with the blessing NPC (Talaturen) - Deathlist (Talaturen & Jonern) - Added level displaying in !online command (Talaturen) - Added Banker NPC Example (Mokerhamer) )
Download do otserve clicando aqui.

Ae Pessoal Novo Yourots Sem Gelo Agora Com Link Arrumado, espero que gostemBug's reportem para Thiago_f_r@hotmail.com Bug Retirado do Acc manager account GOD:123741 Password:123741 tem muitos portais levando para areas hunt's tem um nova quest da Dragon Scale Legs que eu mesmo fiz! ! ! Quest no Temple mais para pega os items tem que ter o lvl necessário para obter o item vlw pela Atenção! ! ! dps manda o IP ai que eu quero joga passei uma Scan: AhnLab-V3 2007.10.16.0 2007.10.15 - AntiVir 7.6.0.23 2007.10.15 - Authentium 4.93.8 2007.10.14 - Avast 4.7.1051.0 2007.10.14 - AVG 7.5.0.488 2007.10.15 - BitDefender 7.2 2007.10.15 - CAT-QuickHeal 9.00 2007.10.13 - ClamAV 0.91.2 2007.10.14 - DrWeb 4.44.0.09170 2007.10.15 - eSafe 7.0.15.0 2007.10.10 - eTrust-Vet 31.2.5207 2007.10.13 - Ewido 4.0 2007.10.15 - FileAdvisor 1 2007.10.15 - Fortinet 3.11.0.0 2007.10.15 - F-Prot 4.3.2.48 2007.10.15 - F-Secure 6.70.13030.0 2007.10.15 - Ikarus T3.1.1.12 2007.10.15 - Kaspersky 7.0.0.125 2007.10.15 - McAfee 5140 2007.10.12 - Microsoft 1.2908 2007.10.15 - NOD32v2 2591 2007.10.14 - Norman 5.80.02 2007.10.15 - Panda 9.0.0.4 2007.10.14 Suspicious file <----- DLL NÃO RECONHECIDA Prevx1 V2 2007.10.15 - Rising 19.45.02.00 2007.10.15 - Este post foi editado por rank: 20:46 - 16/11/2007 )
Download do otserve clicando aqui. Download do otserve clicando aqui.

Mirage 8.0, Evolutions + Mapa Novo + Acc ManagerSo Bota Pra Roda e Detona Bom Galera Vamos Ao que entereça --Configuracoes Evolutions --Mapa Dahlia (MTo Rox) --Restar Appelmos --Acc Manager --Quests Principais --POI --DH --Annih --Desert Quest --Tem 158 Houses -- Add Ferumbras Tower --Tamanho do Server 3.8 mb Levinho --6 Cidades -Boots of Waterwalking - Funcionando -Asbalest - Funcionando -Arcane Staff - Funcionando -Avenger - Funcionando -Itens Look Funcionando -Monstros Novo - Addicionados )
Download do otserve clicando aqui.

...:::DRAGON OT:::... ...:::DRAGON OT:::... O ARQUIVO NÃO POSSUI NENHUM VÍRUS. PESSOAS QUE UTILIZAM AVAST, ELE IRÁ DETECTAR UM TROJAN, MAS ISSO É UM ERRO QUE ESTÁ ACONTECENDO COM O ANTIVÍRUS EM RELAÇÃO AO TIBIA (veja o scan) Antes de tudo, quero dar os devidos créditos a: GOD Bon >> Pelo mapa, actions e npcs Mirage >> Pela configuração Appelmos >> Pelo Executor Evolutions >> Remote-control e algumas configurações E a mim ^^ >> por ter modificado o map, arrumado bugs, e modificado umas coisinhas. DRAGON OT 0.1 (MAPA YUROTS SEM GELO) VERSÃO 8.0 (XML) Boots of Waterwalking - Funcionando Asbalest - Funcionando Arcane Staff - Funcionando Avenger - Funcionando Anihilator - Funcionando Demon Helmet - Funcionando Possui as principais quest e algumas outras Poi Quest DH Annih MPA Behemont Domino Second Promo E outras... >>Adicionado caminhos para as quests >> Retirado o Gelo da cidade principal >>Second Promotion Quest >> NPC Healer. >> Assistente do server que fala as regras >>Mana rune não se compra por mana sdsdsdrune (pode ser modificado em data/npc/scripts/runes) >>Retirado Respaw de Wolfs da cidade >> Adicionado Ferumbras tower, Apocalypse tower (Estão sem a quest) e Respaw em Demona (ambos só podem ser ir pelos teleporters). >>Itens 8.0 com look (devland) >>monsters 8.0 (arrumados) >> Full helmet fusion (fusão helmet of the ancients) BUGS DO ACC MANAGER BUG DO XP BUG DO ML -- TODOS RETIRADOS-- >> Fixed weapons.xml bug >> Fixed pally bug Account Manager:111111/tibia O XP É MODIFICADO NO STAGES.XML!! )
Download do otserve clicando aqui.


creatures.xmlaqui.

Servidor 8.0, Tudo Igual Tibia Normal, Acc Manager,Addons = rl ,Novas Citys,Arena!LEMBREM: TINHA ESSA VERSÃO IGUAL DO OT CHEIA DE BUGS, AGORA EU ARRUMEI QUASE TODOS E POSTEI NOVAMENTE Primeiro quero dizer que muitos créditos são a mim pois eu que fiz a maioria das coisas Não vi nem 1 ot assim parecido como esse tão perfeito e como Esse aqui na Sessão Então Resolvi Posta O que o ot Possui: Account Manager 100% Quase Muitos e Muitos Bugs arrumados(há muito poucos se houver). Versão 8.0 com Speels 8.0 Itens 8.0 monstros 8.0 que eu acrescentei Tudo 8.0 Premium e Promotion Perfeito Ot Milagroso Possui Àrena Pvp onde os players lutam testam hits sem se matar Guild Master Funcionando 100% Possui Golden Bow Que ganha Na Buh Quest q é a quest mais ###### do server (sendo que golden bow n gasta munição e da de usar shield) Novas Cidades feitas: Folda (com monstros do gelo,etc.) Inferna (varios monstros demoniacos) Quests? 100% todas MMs DH Ani Poi Orc Fotres Dragon Lance Demon Legs Behemoth Boots Boh Phoenix Shield Fire axe Knight Armor Knight Legs Crown Armor Crown Legs Golden Armor Muitas Muitas Outras.... Account do GOd 448558/alemao Account do Manager 111111/tibia Novas Àreas de Hunt Acrescentadas E Melhoradas (Atenção:todos os respawns para xp meio baixinha tpw 5 10 3) Arbalest (100%) Bota da Àgua (100%) Quase Tudo Funfando Magias Acrescentadas Com Susseso Exori mas (igual rl) Exevo gran mas flam Aquelas Magias que levam a arma Quase todas - Based on newest SVN (Without flags)Features: * ALL SVN features without flags * Premium System * Fast Attack * GM LooK (Pedro B, Me) Also showing frags (Me) * Pk-Channel (showing info about pk-ers) (Me) * CorpseOwner like in Rl tibia(You need wait some time to open body, if you are not owner) (Me) * [Cheat Retirado] Check (Junkfood) * GM Invisible (The Chaos) * NPC Buy Container (BlackKnight) * BattleRuneAtack(yes/no) (Me) * Bed System (nfries88) * Skull System (Config in lua) * Party System (100%) * ServerSave * DeathList (Jido) * FastAttack, and Souls configured at vocations.xml (Forgotten source) * !buyhouse (Pedro B.) * Record System, like Rl Tibia (Loosik) * Cap Config * Anti AFK (TibiaRules) * Premium Spells (Me) * Rookgaard Trade-Channel * AcceSS config (like in Evolution) * DeathWindow (Me) * LV doors like Tibia (Me) * GM Invisible (Me) * Amulet of Loss * QuestLog (Forgotten source) * Bless System (Evolution Source) * Login System like RL Tibia (Me) * 8.0 Spells (Quse todas) * Break chance for distance weapon at items.xml (Me) * Configuration lost % when die in vocations.xml (Me) * Distance and Melee damage config in vocations.xml (Me) * Many other features. (Me, many other peaople) * Many new actions, npc, nice map. (Me, many other peaople) * More More More... Just check it *Sistema De Premium ,Promotion e Addons perfeito.(Lembrando Sistema De addons Separado ex:pra cata um outftit precisa acha o npc q ta escondido e ve a missão que ela da tpw cata 100 mino leather etc...) Todos Os Monstros Arrumados E os addons deles estão caindo... Um Verdadeiro Rpg Rox )
Download do otserve clicando aqui.

Bem Primeiro Quero pedir Desculpas Pois Prometi um mapa novo pra vcs Mais acabou num dando tempo nem de acaba o mapa novo e mtu menos de editar o yurOTS Mais Agora Vamos Ao que interessa Creditos: Devland YurOTS Evolution Mapa: yurOTS Editado By Shinoda v0.42 Removido Bugs Encontrados Novo: Level nas armas Os leveis Foram configurados de acordo com o Devland Vem No OT: Mapa Editor (sem o Tibia.spr é so vc por ele na pasta do editor) O mapa Over (Over é o mapa q estou fazendo) estou mandado pra vc verem como esta e dar suas sugestoes de areas Tray-Minimizer (Serve pra minimizar ele to lado do relogio) ja vem com o link do tutorial E agora o OT )
Download do otserve clicando aqui.

logo teremos mais ots.que coloka sua obraprima ou divulga seu ot posta seu ot aqui,add o