Ir para conteúdo
  • Cadastre-se

(Resolvido)[Pedido] Transformar Hds em Scaraby Coin


Ir para solução Resolvido por egyptPOWER,

Posts Recomendados

Alguém poderia me mandar um script que no caso transformaria 100 notas azuis em 1 scarab coin quando clicar com o botão direito do mouse?? Rep+ ^^

Link para o post
Compartilhar em outros sites

Pegue o script usado para transformar cents em dollars, ou dollars em TDs, e baseie-se nele, basta trocar alguns Ids..

Enviado de meu SM-G3502L usando Tapatalk

Sem signature aqui..

 

Link para o post
Compartilhar em outros sites
  • Solução

Procure pelo arquivo changegold.lua na pasta actions/scripts/... e substitua por este. Substitua ID DA SCARAB COIN pelo id do item.

 

Spoiler

local coins = {
[12416] = {to = 2148},
[2148] = {to = 2152, from = 12416}, 
[2152] = {to = 2160, from = 2148}, 
[2160] = {to = ID SCARAB COIN, from = 2152},

[ID SCARAB COIN] = {from = 2160},
}

function onUse(cid, item, fromPosition, itemEx, toPosition)

    if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then
        return false
    end

    local coin = coins[item.itemid]
    if(not coin) then
        return false
    end

    if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then
        doChangeTypeItem(item.uid, item.type - item.type)
        doPlayerAddItem(cid, coin.to, 1)
    elseif(coin.from ~= nil) then
        doChangeTypeItem(item.uid, item.type - 1)
        doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX)
    end
    
    return true
end

 

 

Me de feedback sobre o ocorrido.

No signature.

 

 

 

Link para o post
Compartilhar em outros sites
2 horas atrás, egyptPOWER disse:

Procure pelo arquivo changegold.lua na pasta actions/scripts/... e substitua por este. Substitua ID DA SCARAB COIN pelo id do item.

 

  Ocultar conteúdo

local coins = {
[12416] = {to = 2148},
[2148] = {to = 2152, from = 12416}, 
[2152] = {to = 2160, from = 2148}, 
[2160] = {to = ID SCARAB COIN, from = 2152},

[ID SCARAB COIN] = {from = 2160},
}

function onUse(cid, item, fromPosition, itemEx, toPosition)

    if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then
        return false
    end

    local coin = coins[item.itemid]
    if(not coin) then
        return false
    end

    if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then
        doChangeTypeItem(item.uid, item.type - item.type)
        doPlayerAddItem(cid, coin.to, 1)
    elseif(coin.from ~= nil) then
        doChangeTypeItem(item.uid, item.type - 1)
        doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX)
    end
    
    return true
end

 

 

Me de feedback sobre o ocorrido.

Mano Funcionou mas não tem como destransformar tbm?? tipo a scarab voltar a virar 100td quando clicar...

Link para o post
Compartilhar em outros sites

me passe o id da scarab e o id do td.

Editado por Striker Macabrus (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Eu não estou em casa peguei a script do egyptPOWER como base adicionei apenas uma linha entao os creditos é dele, bom em fim  Procure pelo arquivo changegold.lua na pasta actions/scripts  e substitua por este, eu não testei a script então teste se der algum erro poste aqui que irei tentar lhe ajudar. 

 

local coins = {
[12416] = {to = 2148},
[2148] = {to = 2152, from = 12416}, 
[2152] = {to = 2160, from = 2148}, 
[2160] = {to = 2159, from = 2152},
[2159] = {to = 2160, from = 2152},
[2159] = {from = 2160},
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then
        return false
    end
    local coin = coins[item.itemid]
    if(not coin) then
        return false
    end
    if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then
        doChangeTypeItem(item.uid, item.type - item.type)
        doPlayerAddItem(cid, coin.to, 1)
    elseif(coin.from ~= nil) then
        doChangeTypeItem(item.uid, item.type - 1)
        doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX)
    end
    
    return true
end

Editado por Striker Macabrus (veja o histórico de edições)
Link para o post
Compartilhar em outros sites
52 minutos atrás, Striker Macabrus disse:

Eu não estou em casa peguei a script do egyptPOWER como base adicionei apenas uma linha entao os creditos é dele, bom em fim  Procure pelo arquivo changegold.lua na pasta actions/scripts  e substitua por este, eu não testei a script então teste se der algum erro poste aqui que irei tentar lhe ajudar. 

 

local coins = {
[12416] = {to = 2148},
[2148] = {to = 2152, from = 12416}, 
[2152] = {to = 2160, from = 2148}, 
[2160] = {to = 2159, from = 2152},
[2159] = {to = 2160, from = 2152},
[2159] = {from = 2160},
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then
        return false
    end
    local coin = coins[item.itemid]
    if(not coin) then
        return false
    end
    if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then
        doChangeTypeItem(item.uid, item.type - item.type)
        doPlayerAddItem(cid, coin.to, 1)
    elseif(coin.from ~= nil) then
        doChangeTypeItem(item.uid, item.type - 1)
        doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX)
    end
    
    return true
end

Ela esta transformando em scarab coin mas não esta destransformando!!

Link para o post
Compartilhar em outros sites

Tente assim:

 

local coins = {
[12416] = {to = 2148},
[2148] = {to = 2152, from = 12416}, 
[2152] = {to = 2160, from = 2148}, 
[2160] = {to = 2159, from = 2152},
[2159] = {to = 2160, from = 2152},
[2159] = {from = 2160},

[2160] = {from = 2159},
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then
        return false
    end
    local coin = coins[item.itemid]
    if(not coin) then
        return false
    end
    if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then
        doChangeTypeItem(item.uid, item.type - item.type)
        doPlayerAddItem(cid, coin.to, 1)
    elseif(coin.from ~= nil) then
        doChangeTypeItem(item.uid, item.type - 1)
        doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX)
    end
    
    return true
end

Link para o post
Compartilhar em outros sites
2 horas atrás, Striker Macabrus disse:

Tente assim:

 

local coins = {
[12416] = {to = 2148},
[2148] = {to = 2152, from = 12416}, 
[2152] = {to = 2160, from = 2148}, 
[2160] = {to = 2159, from = 2152},
[2159] = {to = 2160, from = 2152},
[2159] = {from = 2160},

[2160] = {from = 2159},
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if(getPlayerFlagValue(cid, PLAYERFLAG_CANNOTPICKUPITEM)) then
        return false
    end
    local coin = coins[item.itemid]
    if(not coin) then
        return false
    end
    if(coin.to ~= nil and item.type == ITEMCOUNT_MAX) then
        doChangeTypeItem(item.uid, item.type - item.type)
        doPlayerAddItem(cid, coin.to, 1)
    elseif(coin.from ~= nil) then
        doChangeTypeItem(item.uid, item.type - 1)
        doPlayerAddItem(cid, coin.from, ITEMCOUNT_MAX)
    end
    
    return true
end

Não ta dando ainda... agr ta transformando 100tds em 100 scarab coin!

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