Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Duvida em Talkactions, é o seguinte galera meu ot esta com o comando /attr set attack, defense, /attr destination bugados, eu uso /attr set attack 100 mais a arma continua com o mesmo attack original o mesmo acontece com armor defense...e quero por destino ao teleport tbm nao funciona coloco por exemplo /attr destination 1141 1560 7 o tp nao leva a lugar algum...ALGUEM PFF AJUDA???

SE AJUDEI REP+ ;D, NÃO CUSTA NADA.

uRti.png

<a href="http://central.evenhost.net/aff.php?aff=020"><img src="http://i.imm.io/uRti.png" width="500" height="82" border="0"></a>

Link para o post
Compartilhar em outros sites

tem como postar os comandos quanto ao de teleport acho q é no lib seu algum mod e aproveitando quando vc usa algum desses comandos da erro no console se sim poste a imagm

/attr set attack, defense

Editado por Sociopata (veja o histórico de edições)


Regras Gerais 

 

"Califórnia Brasileira :cool: "

Link para o post
Compartilhar em outros sites

Nao da nenhum erro...so apenas qnd eu uso o comando ele nao executa a funfa dele que e almenta o atk def...

<talkaction log="yes" words="/attr" access="5" event="function" value="thingProporties"/> é o que eu uso...

Editado por Fabiano Alberto (veja o histórico de edições)

SE AJUDEI REP+ ;D, NÃO CUSTA NADA.

uRti.png

<a href="http://central.evenhost.net/aff.php?aff=020"><img src="http://i.imm.io/uRti.png" width="500" height="82" border="0"></a>

Link para o post
Compartilhar em outros sites

Add esse script ae



local itemFuncs =

{

["attackspeed"] = setItemAttackSpeed,

["name"] = setItemName,

["plural"] = setItemPluralName,

["attack"] = setItemAttack,

["extraattack"] = setItemExtraAttack,

["defense"] = setItemDefense,

["armor"] = setItemArmor,

["extradefense"] = setItemExtraDefense,

["hitchance"] = setItemHitChance,

["range"] = setItemShootRange,

["actionid"] = doSetItemActionId,

["action"] = doSetItemActionId,

["aid"] = doSetItemActionId,

["description"] = doSetItemSpecialDescription,

["desc"] = doSetItemSpecialDescription,

["protection"] = doSetItemProtection,

["charges"] = doChangeTypeItem,

["count"] = doChangeTypeItem

}[/size][/color][/font]

[font="helvetica, arial, sans-serif"][color="#282828"][size=3]local creatureFuncs =

{

["health"] = doCreatureAddHealth,

["maxhealth"]= setCreatureMaxHealth,

["mana"] = doCreatureAddMana,

["maxmana"] = setCreatureMaxMana,

["speed"] = doChangeSpeed,

["droploot"] = doCreatureSetDropLoot,

["cannotmove"] = doCreatureSetNoMove,

["skull"] = doCreatureSetSkullType,

["redskull"] = doPlayerSetRedSkullTicks

}[/size][/color][/font]

[font="helvetica, arial, sans-serif"][color="#282828"][size=3]local playerFuncs =

{

["fyi"] = doPlayerPopupFYI,

["tutorial"] = doPlayerSendTutorial,

["guildrank"] = doPlayerSetGuildRank,

["guildnick"] = doPlayerSetGuildNick,

["group"] = doPlayerSetGroupId,

["vocation"] = doPlayerSetVocation,

["promotion"] = setPlayerPromotionLevel,

["stamina"] = doPlayerAddStamina,

["town"] = doPlayerSetTown,

["balance"] = doPlayerDepositMoney

}[/size][/color][/font]


[font="helvetica, arial, sans-serif"][color="#282828"][size=3]function onSay(cid, words, param, channel)

if(param == "") then

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.")

return TRUE

end[/size][/color][/font]

[font="helvetica, arial, sans-serif"][color="#282828"][size=3]local pos = {x=getCreaturePosition(cid).x, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z, stackpos=1}

if getCreatureLookDirection(cid) == SOUTH then

pos = {x=getCreaturePosition(cid).x, y=getCreaturePosition(cid).y+1, z=getCreaturePosition(cid).z, stackpos=255}

elseif getCreatureLookDirection(cid) == NORTH then

pos = {x=getCreaturePosition(cid).x, y=getCreaturePosition(cid).y-1, z=getCreaturePosition(cid).z, stackpos=255}

elseif getCreatureLookDirection(cid) == EAST then

pos = {x=getCreaturePosition(cid).x+1, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z, stackpos=255}

elseif getCreatureLookDirection(cid) == WEST then

pos = {x=getCreaturePosition(cid).x-1, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z, stackpos=255}

end[/size][/color][/font]

[font="helvetica, arial, sans-serif"][color="#282828"][size=3]local t = string.explode(param, ",")[/size][/color][/font]


[font="helvetica, arial, sans-serif"][color="#282828"][size=3]local getThing = getThingFromPos(pos)[/size][/color][/font]

[font="helvetica, arial, sans-serif"][color="#282828"][size=3]if itemFuncs[t[1]] then

if getThing.itemid > 0 then

if itemFuncs[t[1]](getThing.uid, t[2]) then

doSendMagicEffect(pos, CONST_ME_MAGIC_GREEN)

return TRUE

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Sorry, you can not add attribute to this item.")

return TRUE

end

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Item not found.")

return TRUE

end

elseif creatureFuncs[t[1]] then

if isCreature(getThing.uid) then

if creatureFuncs[t[1]](getThing.uid, t[2]) then

doSendMagicEffect(pos, CONST_ME_MAGIC_GREEN)

return TRUE

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Sorry, you can not add attribute to this creature.")

return TRUE

end

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Creature not found.")

return TRUE

end

elseif playerFuncs[t[1]] then

if isPlayer(getThing.uid) then

if playerFuncs[t[1]](getThing.uid, t[2]) then

doSendMagicEffect(pos, CONST_ME_MAGIC_GREEN)

return TRUE

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Sorry, you can not add attribute to this player.")

return TRUE

end

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player not found.")

return TRUE

end

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Unknow attribute.")

return TRUE

end

return TRUE

end

Editado por Sociopata (veja o histórico de edições)


Regras Gerais 

 

"Califórnia Brasileira :cool: "

Link para o post
Compartilhar em outros sites

Fiz o que vc disse e msm assim nao deu certo, tipo o comando funciona mais ele nao da o attack que quero /attr set attack 100, a sword e attack 50 eu uso o comando para dar atk 100 mais msm assim ela continua atk 50...

Cara eu refiz dnovo e acontece isso...

16:40 /attr set attack 100

16:40 Unknow attribute.

Qual seria o comando que eu teria que usar???

Editado por Fabiano Alberto (veja o histórico de edições)

SE AJUDEI REP+ ;D, NÃO CUSTA NADA.

uRti.png

<a href="http://central.evenhost.net/aff.php?aff=020"><img src="http://i.imm.io/uRti.png" width="500" height="82" border="0"></a>

Link para o post
Compartilhar em outros sites

tenta

/attr attack -- Muda o ataque de algum item.

/attr extraattack -- Adiciona ataque extra em algum item

Duvidas ve isso aqui

http://tibiaking.com/forum/topic/1991-opcoes-do-comando-attr/

Editado por Sociopata (veja o histórico de edições)


Regras Gerais 

 

"Califórnia Brasileira :cool: "

Link para o post
Compartilhar em outros sites

Cara eu usei o script que vc mando e acontece isso em td tipo de comando de attr que uso

16:57 /attr group 6

16:57 Unknow attribute.

SE AJUDEI REP+ ;D, NÃO CUSTA NADA.

uRti.png

<a href="http://central.evenhost.net/aff.php?aff=020"><img src="http://i.imm.io/uRti.png" width="500" height="82" border="0"></a>

Link para o post
Compartilhar em outros sites

Cara esse script que vc me passo esta todo bugado>>>

pos = {x=getCreaturePosition(cid).x-1, y=getCreaturePosition(cid).y, z=getCreaturePosition(cid).z, stackpos=255}

end

local t = string.explode(param, ",")

local getThing = getThingFromPos(pos)

if itemFuncs[t[1]] then

if getThing.itemid > 0 then

........

<talkaction log="yes" words="/attr" access="5" event="function" value="thingProporties"/><<<<<ALI em event é script que tenho que por function e um finção que existe nos mods ou dlls do tfs nao sei como é isso por isso to pedindo ajuda....eu peguei essescript sem bugs...mais nao funciono.,....Vlw por tentar ajudar...PFF AJUDAAAAAAAAA

SE AJUDEI REP+ ;D, NÃO CUSTA NADA.

uRti.png

<a href="http://central.evenhost.net/aff.php?aff=020"><img src="http://i.imm.io/uRti.png" width="500" height="82" border="0"></a>

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo