Ir para conteúdo

[pedido]100 Cristal Coin 1 Ruby Coin 100 Ruby Coin 1 Esmerald Coin [plz]


914992

Posts Recomendados

Crie um arquivo.lua chamado coins na pasta scripts dentro de actions

function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.itemid == ITEM_CRYSTAL_COIN and item.type == ITEMCOUNT_MAX then	

doChangeTypeItem(item.uid, item.type - item.type)		

doPlayerAddItem(cid, ITEMIDODORUBYCOIN, 1)		

doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_RED)
elseif item.itemid == ITEMIDDORUBYCOIN and item.type == ITEMCOUNT_MAX then	

doChangeTypeItem(item.uid, item.type - item.type)		

doPlayerAddItem(cid, ITEMIDDOESMERALDCOIN, 1)


doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_GREEN)
elseif item.itemid == ITEMIDDORUBYCOIN and item.type < ITEMCOUNT_MAX then	

doChangeTypeItem(item.uid, item.type - 1)		
doPlayerAddItem(cid, ITEM_CRYSTAL_COIN, ITEMCOUNT_MAX)


doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_LIGHTBLUE)
elseif item.itemid == ITEMIDDOESMERALDCOIN then		

doChangeTypeItem(item.uid, item.type - 1)		
doPlayerAddItem(cid, ITEMIDDORUBYCOIN, ITEMCOUNT_MAX)


doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_LIGHTBLUE)
else		
return FALSE	
end	
return TRUE
end

 

Em seguida introduza a seguinte tag no arquivo actions.xml

<action itemid="2160" script="coins.lua"/>
<action itemid="ITEMIDDORUBYCOIN" script="coins.lua"/>
<action itemid="ITEMIDDOESMERALDCOIN" script="coins.lua"/>

 

ITEMIDDORUBYCOIN - Substituia pelo Item ID do Ruby Coin

ITEMIDDOESMERALDCOIN - Substituia pelo Item ID do Esmerald Coin

 

Qualquer erro ou duvida por favor me corrijam, é o meu primeiro script postado.

Link para o comentário
Compartilhar em outros sites

Crie um arquivo.lua chamado coins na pasta scripts dentro de actions

function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.itemid == ITEM_CRYSTAL_COIN and item.type == ITEMCOUNT_MAX then	

doChangeTypeItem(item.uid, item.type - item.type)		

doPlayerAddItem(cid, ITEMIDODORUBYCOIN, 1)		

doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_RED)
elseif item.itemid == ITEMIDDORUBYCOIN and item.type == ITEMCOUNT_MAX then	

doChangeTypeItem(item.uid, item.type - item.type)		

doPlayerAddItem(cid, ITEMIDDOESMERALDCOIN, 1)


doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_GREEN)
elseif item.itemid == ITEMIDDORUBYCOIN and item.type < ITEMCOUNT_MAX then	

doChangeTypeItem(item.uid, item.type - 1)		
doPlayerAddItem(cid, ITEM_CRYSTAL_COIN, ITEMCOUNT_MAX)


doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_LIGHTBLUE)
elseif item.itemid == ITEMIDDOESMERALDCOIN then		

doChangeTypeItem(item.uid, item.type - 1)		
doPlayerAddItem(cid, ITEMIDDORUBYCOIN, ITEMCOUNT_MAX)


doSendAnimatedText(fromPosition, "$$$", TEXTCOLOR_LIGHTBLUE)
else		
return FALSE	
end	
return TRUE
end

 

Em seguida introduza a seguinte tag no arquivo actions.xml

<action itemid="2160" script="coins.lua"/>
<action itemid="ITEMIDDORUBYCOIN" script="coins.lua"/>
<action itemid="ITEMIDDOESMERALDCOIN" script="coins.lua"/>

 

ITEMIDDORUBYCOIN - Substituia pelo Item ID do Ruby Coin

ITEMIDDOESMERALDCOIN - Substituia pelo Item ID do Esmerald Coin

 

Qualquer erro ou duvida por favor me corrijam, é o meu primeiro script postado.

 

cara tem como vc me ajuda criando as moedas pra mim ??? pq nem sei como add itens no map editor !!

plz help me

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...