Nossa valeu MAtheus ja adicionei o ponto de reputação pra vocÊ!
Beijos!!!
Por lucashgas, 10 de jan. de 2012 em Tópicos Sem Resposta
Nossa valeu MAtheus ja adicionei o ponto de reputação pra vocÊ!
Beijos!!!
@All
alguem passa DayCare system aew plx, falaram q alguem ja tinha postado mas eu nao axei ;X, dou 1 semana de REP+ pra quem me ajudar '-'
info
Grupo: Infante
Registrado: 27/08/11
Posts: 1.9k
Reputação: +85
Gênero: Masculino
Char no Tibia: Bruno Maciel

Alguem aii pode manda pokemons hoen e pokemons da 3 geraçao ???
valendo rep ++++ durante 3 dias de rep +++++
info
Grupo: Cavaleiro
Registrado: 22/12/11
Posts: 158
Reputação: +17

- Retired -
Editado Abril 14 por HisashiItYamaguti
O membro postou palavrões de baixo calão.
info
Grupo: Campones
Registrado: 10/04/12
Posts: 6
Reputação: 0
Char no Tibia: Noiado

- Retired -
Editado Abril 14 por HisashiItYamaguti
Flood
@All
alguem ai tem Rain System para PDA?
info
Grupo: Conde
Registrado: 17/07/11
Posts: 705
Reputação: +108

- Gabrielzxzx
Cuidado, palavrões de baixo calão não são permitidos no fórum e poderá acarretar em futuros alertas, obs: no próximo será alerta por 10 porcento na certa e talvez pode ocorrer em suspensão de 3 dias também *-*.
- Onoiado
Cuidado com os floods, poderá ser alertado também e até mesmo suspenso *-*.
@All
kd td mundo?
, quase nao teve post hj :'(
info
Grupo: Infante
Registrado: 27/08/11
Posts: 1.9k
Reputação: +85
Gênero: Masculino
Char no Tibia: Bruno Maciel

Alguem pode mi manta script eo xml quem tenha do milotic valendo rep++++ ?????????????
info
Grupo: Campones
Registrado: 29/06/10
Posts: 28
Reputação: 0
Char no Tibia: Legendary math

so falta os npcs alguem tem ai tudo ajeitado ?
info
Grupo: Cavaleiro
Registrado: 13/07/11
Posts: 152
Reputação: +22
Char no Tibia: Kois

@all Soh pra avisar ninguem vai posta os monstro Feitos aprenda a fazer sozinho
se nao conseguir na 1ª vez tenta de novo Uma hora acerta eu fiz 65 poke novos sozinho sem ajuda sem nada seu eu consigo pq vc nao consegue intao
começe a tenta a fazer seu proprios monstros
agora os Scripts ou Npc ai sim é dificl de fazer mais os montros sao Muito Facil ![]()
Alguem ai tem o script do teleporte do talkaction configurados com todas as city???
Grato, REP+
info
Grupo: Cavaleiro
Registrado: 13/07/11
Posts: 152
Reputação: +22
Char no Tibia: Kois

Alguem ai tem o script do teleporte do talkaction configurados com todas as city???
Grato, REP+
primeiro vc tem a aruamar as town no mapa pois se nao vai dar certo
local poke = {'Abra', 'Kadabra', 'Alakazam', 'Drowzee', 'Hypno', 'Mr. Mime', 'Mew', 'MewTwo', 'Porygon', 'Porygon2', "Dark Abra", "Shiny Kadabra", "Dark Alakazam", "Shiny Mew", "Shiny Mewtwo", "Shiny Hypno", "Shiny Drowzee", "Shiny Mr.Mime", "Shiny Porygon"}
local etele = 9499
local cdtele = 1800
local config = {
premium = true, -- se precisa ser premium account (true or false)
battle = false -- se precisa estar sem battle (true). Se colocar false, poderá usar teleport no meio de batalhas
}
local places = {
[1] = {name = "Saffron", id = 1},
[2] = {name = "Cerulean", id = 2},
[3] = {name = "Lavender", id = 3},
[4] = {name = "Fuchsia", id = 4},
[5] = {name = "Celadon", id = 5},
[6] = {name = "Viridian", id = 6},
[7] = {name = "Vermillion", id = 7},
[8] = {name = "Pewter", id = 8},
[9] = {name = "Pallet", id = 9},
[10] = {name = "Cinnabar", id = 10},
}
function onSay(cid, words, param)
if #getCreatureSummons(cid) == 0 then
doPlayerSendCancel(cid, "You need a pokemon to use teleport.")
return true
end
if not isInArray(poke, getCreatureName(getCreatureSummons(cid)[1])) then
return 0
end
if exhaustion.get(cid, etele) and exhaustion.get(cid, etele) > 0 then
local tempo = tonumber(exhaustion.get(cid, etele)) or 0
local min = math.floor(tempo)
doPlayerSendCancel(cid, "Your pokemon is tired, wait "..getStringmytempo(tempo).." to teleport again.")
return true
end
if config.premium and not isPremium(cid) then
doPlayerSendCancel(cid, "Only premium members are allowed to use teleport.")
return true
end
if config.battle and getCreatureCondition(cid, CONDITION_INFIGHT) then
doPlayerSendCancel(cid, "Your pokemon can't concentrate during battles.")
return true
end
if (param == '') then
local str = ""
str = str .. "Places to go :\n\nHouse\n"
for a = 1, #places do
str = str..""..places[a].name.."\n"
end
doShowTextDialog(cid, 7416, str)
return true
end
local item = getPlayerSlotItem(cid, 8)
local nome = getPokeballName(item.uid)
local summon = getCreatureSummons(cid)[1]
local lastppos = getThingPos(cid)
local lastspos = getThingPos(summon)
local telepos = {}
local myplace = ""
local townid = 0
if string.lower(param) == "house" then
if not getHouseByPlayerGUID(getPlayerGUID(cid)) then
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "You don't own a house.")
return true
end
telepos = getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid)))
myplace = "our home"
else
for x = 1, #places do
if string.find(string.lower(places[x].name), string.lower(param)) then
townid = places[x].id
myplace = places[x].name
end
end
if myplace == "" then
doPlayerSendCancel(cid, "That place doesn't exist.")
return true
end
end
if myplace ~= "" and townid > 0 then
telepos = getTownTemplePosition(townid)
end
if getDistanceBetween(getThingPos(cid), telepos) <= 15 then
doPlayerSendCancel(cid, "You are too near to the place you want to go!")
return true
end
doSendMagicEffect(getThingPos(summon), 29)
doSendMagicEffect(getThingPos(cid), 29)
doTeleportThing(cid, telepos, false)
local pos2 = getClosestFreeTile(cid, getPosByDir(getThingPos(cid), SOUTH))
doTeleportThing(summon, pos2, false)
doSendMagicEffect(getThingPos(cid), 29)
doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", 1)
doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", 1, false, 0, lastppos)
doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER)
doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER, false, 0, lastspos)
doCreatureSetLookDir(cid, SOUTH)
doCreatureSetLookDir(summon, SOUTH)
doSendMagicEffect(getThingPos(summon), CONST_ME_TELEPORT)
exhaustion.set(cid, etele, cdtele)
doRemoveCondition(cid, CONDITION_OUTFIT)
return true
end
info
Grupo: Cavaleiro
Registrado: 14/02/11
Posts: 164
Reputação: +12
tenta usar esse outfit.xml
<?xml version="1.0"?>
<outfits>
<!-- NORMAL -->
<outfit id="1">
<list gender="0" lookType="511" name="Trainer"/>
<list gender="1" lookType="510" name="Trainer"/>
</outfit>
<outfit id="2">
<list gender="0" lookType="615" name="Elite Trainer"/>
<list gender="1" lookType="614" name="Elite Trainer"/>
</outfit>
<outfit id="3">
<list gender="0" lookType="512" name="Rapper"/>
<list gender="1" lookType="545" name="Rapper"/>
</outfit>
<outfit id="4">
<list gender="0" lookType="588" name="Jamaican"/>
<list gender="1" lookType="587" name="Jamaican"/>
</outfit>
<outfit id="5">
<list gender="0" lookType="586" name="Oriental"/>
<list gender="1" lookType="585" name="Oriental"/>
</outfit>
<outfit id="6">
<list gender="0" lookType="605" name="Rocket"/>
<list gender="1" lookType="604" name="Rocket"/>
</outfit>
<outfit id="7">
<list gender="0" lookType="495" name="Adventurer"/>
<list gender="1" lookType="494" name="Adventurer"/>
</outfit>
<outfit id="8">
<list gender="0" lookType="513" name="Bussiness"/>
<list gender="1" lookType="514" name="Bussiness"/>
</outfit>
<outfit id="9">
<list gender="0" lookType="517" name="Atletic"/>
<list gender="1" lookType="516" name="Atletic"/>
</outfit>
<outfit id="10">
<list gender="0" lookType="519" name="Punk"/>
<list gender="1" lookType="518" name="Punk"/>
</outfit>
<outfit id="11">
<list gender="0" lookType="521" name="Fisher"/>
<list gender="1" lookType="520" name="Fisher"/>
</outfit>
<outfit id="12">
<list gender="0" lookType="524" name="Mercenary"/>
<list gender="1" lookType="522" name="Mercenary"/>
</outfit>
<outfit id="13">
<list gender="0" lookType="525" name="Hiker"/>
<list gender="1" lookType="523" name="Hiker"/>
</outfit>
<!-- PROMOTE -->
<outfit id="14">
<list gender="0" lookType="1149" name="Naturia"/>
<list gender="1" lookType="1159" name="Naturia"/>
</outfit>
<outfit id="15">
<list gender="0" lookType="1152" name="Volcanic"/>
<list gender="1" lookType="1154" name="Volcanic"/>
</outfit>
<outfit id="16">
<list gender="0" lookType="1146" name="Gardestrike"/>
<list gender="1" lookType="1155" name="Gardestrike"/>
</outfit>
<outfit id="17">
<list gender="0" lookType="1153" name="Malefic"/>
<list gender="1" lookType="1157" name="Malefic"/>
</outfit>
<outfit id="18">
<list gender="0" lookType="1148" name="Wingeon"/>
<list gender="1" lookType="1158" name="Wingeon"/>
</outfit>
<outfit id="19">
<list gender="0" lookType="1147" name="Raibolt"/>
<list gender="1" lookType="1160" name="Raibolt"/>
</outfit>
<outfit id="20">
<list gender="0" lookType="1145" name="Psycraft"/>
<list gender="1" lookType="1161" name="Psycraft"/>
</outfit>
<outfit id="21">
<list gender="0" lookType="1151" name="Seavell"/>
<list gender="1" lookType="1162" name="Seavell"/>
</outfit>
<outfit id="22">
<list gender="0" lookType="1150" name="Orebound"/>
<list gender="1" lookType="1156" name="Orebound"/>
</outfit>
<!-- PROMOTE MASTER -->
<outfit id="23">
<list gender="0" lookType="1179" name="Raibolt Legend"/>
<list gender="1" lookType="1164" name="Raibolt Legend"/>
</outfit>
<outfit id="24">
<list gender="0" lookType="1178" name="Seavell Queen"/>
<list gender="1" lookType="1165" name="Seavell King"/>
</outfit>
<outfit id="25">
<list gender="0" lookType="1177" name="Naturia Keeper"/>
<list gender="1" lookType="1166" name="Naturia Keeper"/>
</outfit>
<outfit id="26">
<list gender="0" lookType="1176" name="Malefic Lady"/>
<list gender="1" lookType="1167" name="Malefic Lord"/>
</outfit>
<outfit id="27">
<list gender="0" lookType="1180" name="Volcanic Master"/>
<list gender="1" lookType="1168" name="Volcanic Master"/>
</outfit>
<outfit id="28">
<list gender="0" lookType="1175" name="Wingeon Dragon"/>
<list gender="1" lookType="1169" name="Wingeon Dragon"/>
</outfit>
<outfit id="29">
<list gender="0" lookType="1174" name="Orebound Hero"/>
<list gender="1" lookType="1170" name="Orebound Hero"/>
</outfit>
<outfit id="30">
<list gender="0" lookType="1173" name="Gardestrike Lady"/>
<list gender="1" lookType="1171" name="Gardestrike Champion"/>
</outfit>
<outfit id="31">
<list gender="0" lookType="1181" name="Psycraft Medium"/>
<list gender="1" lookType="1172" name="Psycraft Medium"/>
</outfit>
<!-- GAMEMASTER -->
<outfit id="32">
<list gender="0-3" lookType="664" name="GameMaster"/>
</outfit>
<!-- NATAL -->
<outfit id="33">
<list gender="0" lookType="661" name="Christmas"/>
<list gender="1" lookType="662" name="Christmas"/>
</outfit>
<outfit id="34">
<list gender="0" lookType="1084" name="Christmas 2"/>
<list gender="1" lookType="1083" name="Christmas 2"/>
</outfit>
<!-- HALLOWEEN -->
<outfit id="35">
<list gender="0-3" lookType="1140" name="Mummy"/>
</outfit>
<outfit id="36">
<list gender="0" lookType="1190" name="Bruxa"/>
<list gender="1" lookType="1191" name="Dracula"/>
</outfit>
<outfit id="37">
<list gender="0" lookType="1188" name="Caveira"/>
<list gender="1" lookType="1189" name="Diaba"/>
</outfit>
</outfits>
@vudi
passa ip por pm. (:
Editado Abril 14 por MaatheeuusYuurii