-
Total de itens
884 -
Registro em
-
Última visita
-
Dias Ganhos
8
Tudo que notle2012 postou
-
[Encerrado] [Irregular]Alguem Ajuda Ai , Se Nao For Ajuda Nen Responde
tópico respondeu ao Brisadao de notle2012 em Tópicos Sem Resposta
achoo que vc diz dizer top frags http://www.xtibia.co...4807-top-frags/ -
vixxi acho que vai precisa das sources
-
mais não ja vem no server explica melhor?
-
não testei data\talkactions\scripts\Sbless.lua function onSay(cid, words, param) local fail = 0 if getPlayerLevel(cid) >= 1000 then if getPlayerLevel(cid) < 31 then cost = 3000 else cost = ((getPlayerLevel(cid) - 30) * 150) + 2000 end if cost > 30000 then cost = 30000 end for i = 3, 7 do if getPlayerBlessing(cid, i) then fail = fail + 1 else if doPlayerRemoveMoney(cid, cost) == TRUE then doPlayerAddBlessing(cid, i) if i == 7 and not(fail == 7) then doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED) end else doPlayerSendCancel(cid, "You do not have enough money to buy all the blessings!") break end end end if fail == 7 then doPlayerSendCancel(cid, "You already have all the blessings!") end else doPlayerSendCancel(cid, "Só Lvl 1000+ pode usa.") end return TRUE end data\talkactions\talkactions.xml <talkaction words="!sbless" script="Sbless.lua" />
-
faz comparação do meu pokemon falando um com table e o outro sem http://www.xtibia.com/forum/topic/191123-pokemon-falando/
-
data\globalevents\globalevents.xml <globalevent name="save" interval="3600" event="script" value="save.lua"/> edita na onde ta red se seu tiver diferente aposta globalevents.xml
-
data/creaturescripts/scripts showVocation function onLook(cid, thing, position, lookDistance) local table = { [8080] = getPlayerSex(cid) == PLAYERSEX_MALE and "You are Zeus" or "frase do sexo female", [8081] = getPlayerSex(cid) == PLAYERSEX_MALE and "You are Titan" or "frase do sexo female" } local a = table[getPlayerStorageValue(cid)] if isPlayer(thing.uid) then doPlayerSetSpecialDescription(thing.uid, "\n[Promotion: " .. a .."]") end return true end data\creaturescripts\creaturescripts.xml <event type="look" name="showVoc" event="script" value="showVocation.lua"/> login.lua adiciona isso registerCreatureEvent(cid, "showVoc")
-
é errado matar pq alguem morre na historia se fosse certo vc poderia esta sendo morto a qual quer momento ´por alguém kkkkkkkk
-
qual versão vc usa? tem que edita algo no game.cpp
-
huum já mesmo vc lembra a pagina?
-
pode deixa depois faço Protein Iron Calcium Zinc Carbos
-
fico muito melhor reparados rep +
-
a posta scripts pra mim sabe versão?
-
HP-UP Protein espero que gostem
-
[Encerrado] [Pokemon] Dúvidas? - Pda
tópico respondeu ao lucashgas de notle2012 em Tópicos Sem Resposta
mais vc não ta dizendo do padventures a versão e outra -
[Encerrado] [Pokemon] Dúvidas? - Pda
tópico respondeu ao lucashgas de notle2012 em Tópicos Sem Resposta
procura tutorias como usa dat editor dps de sabe usa dat editor só adiciona os id e os nome e os atk no data\lib\configuration.lua -
é em data\XML\outfits.xml aposta seu outfits.xml pra mim da uma olhada
-
[Encerrado] [Pokemon] Dúvidas? - Pda
tópico respondeu ao lucashgas de notle2012 em Tópicos Sem Resposta
@Slicer, acompanho teu server desde a primeira atualização e baixei todas, tenho print da Pasta POKE com 6 pastas, Versao 1.1, 1.2, etc.. Edit, veja: Olhe bem as datas.. E repito, e quanto a TV? Está bugando acho que vc não baixo cliente então pq ele foi trocado ver ai http://www.mediafire.com/?nai0yvxoh2jaigj -
[Encerrado] [Pokemon] Dúvidas? - Pda
tópico respondeu ao lucashgas de notle2012 em Tópicos Sem Resposta
ja tento baixa denovo aqui ta tudo certo tbm link -
muito bom ótimos scripts esses mais nas Alavancas não seria assim a linha 15 não seria na linha 10 pra mover a alavancas só se tiver a grana, o item doTransformItem(item.uid, item.itemid == 1945 and 1946 or 1945)
-
não entendi muito bem oq vc quer? save fast só ir em data\globalevents\globalevents.xml <globalevent name="save" interval="800" event="script" value="save.lua"/> alterar red
-
ver assim function onUse(cid, item, frompos, item2, topos) local level = getPlayerLevel(cid) local mlevel = getPlayerMagLevel(cid) local exhausted_seconds = 1 local exhausted_storagevalue = 7480 local mana_minimum = 40000 local mana_maximum =40000 local mana_add = math.random(mana_minimum, mana_maximum) if(item.type >= 1) then if(os.time() > getPlayerStorageValue(cid, exhausted_storagevalue)) then if(isPlayer(cid) == 1) then doSendMagicEffect(topos,12) doPlayerAddMana(cid, mana_add) doPlayerAddHealth(cid, mana_add) doPlayerSay(cid,"I feel the best",1) setPlayerStorageValue(cid, exhausted_storagevalue, os.time() + exhausted_seconds) doChangeTypeItem(item.uid, item.type - 1) else doSendMagicEffect(frompos, CONST_ME_POFF) doPlayerSendCancel(cid, "You are exchausted.") end else doSendMagicEffect(frompos, CONST_ME_POFF) doPlayerSendCancel(cid, "You are exhausted.") end else if(os.time() < getPlayerStorageValue(cid, exhausted_storagevalue)) then doSendMagicEffect(frompos, CONST_ME_POFF) doPlayerSendCancel(cid, "You are exhausted.") else if(isPlayer(cid) == 1) then doSendMagicEffect(topos,12) doPlayerAddMana(cid, mana_add) doPlayerAddHealth(cid, mana_add*1.5) doPlayerSay(cid,"I feel the best",1) setPlayerStorageValue(cid, exhausted_storagevalue, os.time() + exhausted_seconds) else doSendMagicEffect(frompos, CONST_ME_POFF) doPlayerSendCancel(cid, "You are exchausted.") end end end return 1 end
-
pedido [Encerrado] [Pedido] Download ~ Otserver De Tibia
tópico respondeu ao rickynhow de notle2012 em Tópicos Sem Resposta
http://www.xtibia.com/forum/forum/596-downloads-de-otserv/ -
fisso um aqui rapidinho acho q fica pequena a imagem
-
dúvida Não Consigo Fazer Novas Hunts, Por Que ?
pergunta respondeu ao GusttavoLimaa de notle2012 em Mapping
não entendeu tenta ai ou vai precisa de imagens? edit Newtonnotwen ja posto imagens rsrs
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.