Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Salve rapazeada, tranquilo? Estou com um script que muda o sexo do personagem clicando em um item, porém quando está com o mage full masculino, ele muda para o mage full feminino e não para o summoner que teria o hat, mas quando muda do feminino pro masculino funciona certinho, não sei o motivo, alguém pode me ajudar?

script do item:
 

 

function onUse(cid, item, itemEx, toPosition)
 
local pos = getCreaturePosition(cid)
if (getTilePzInfo(getPlayerPosition(cid)) == TRUE) then
if (getPlayerSex(cid) == 1) then
doRemoveItem(item.uid, 1)
doPlayerSendTextMessage(cid,22, "Changesex successfully!")
doPlayerSetSex(cid, 0)
doRemoveCreature(cid)
else
doRemoveItem(item.uid, 1)
doPlayerSendTextMessage(cid,22 , "Changesex successfully!")
doPlayerSetSex(cid, 1)
doRemoveCreature(cid)
end
else
doPlayerSendTextMessage(cid, 22, "You can only use this item inside protection zone!")
end
return true
end
Link para o post
Compartilhar em outros sites
25 minutos atrás, Anderson Sacani disse:

Posta o arquivo outfits.xml também

Por ser um servidor 7.4 com addons no client, vou postar o outfits.xml e o addons.xml também:

ouftits.xml:

<?xml version="1.0"?>
<outfits>
    <outfit id="1">
        <list gender="0" lookType="258" name="Citizen"/>
        <list gender="1" lookType="267" name="Citizen"/>
    </outfit>
 
    <outfit id="2">
        <list gender="0" lookType="259" name="Hunter"/>
        <list gender="1" lookType="268" name="Hunter"/>
    </outfit>
 
    <outfit id="3">
        <list gender="0" lookType="339" name="Mage"/>
        <list gender="1" lookType="412" name="Mage"/>
    </outfit>
 
    <outfit id="4">
        <list gender="0" lookType="261" name="Knight"/>
        <list gender="1" lookType="270" name="Knight"/>
    </outfit>
 
    <outfit id="5">
        <list gender="0" lookType="329" name="Noblewoman"/>
        <list gender="1" lookType="297" name="Nobleman"/>
    </outfit>
 
    <outfit id="6" premium="no">
        <list gender="1" lookType="316" name="Summoner"/>
        <list gender="0" lookType="432" name="Summoner"/>
    </outfit>
 
    <outfit id="7">
        <list gender="0" lookType="139" name="Warrior"/>
        <list gender="1" lookType="134" name="Warrior"/>
    </outfit>
   
    <outfit id="8" premium="no">
        <list gender="1" lookType="436" name="Druid"/>
        <list gender="0" lookType="431" name="Druid"/>
    </outfit>  
   
    <outfit id="9" premium="no">
        <list gender="1" lookType="414" name="Oriental"/>
        <list gender="0" lookType="434" name="Oriental"/>
    </outfit>  
 
    <outfit id="10" premium="no">
        <list gender="1" lookType="435" name="Assassin"/>
        <list gender="0" lookType="437" name="Assassin"/>
    </outfit>
   
    <outfit id="11" premium="yes">
        <list gender="0" lookType="337" name="Guardian"/>
        <list gender="1" lookType="308" name="Guardian"/>
    </outfit>
   
    <outfit id="12" premium="yes">
        <list gender="0" lookType="338" name="Spike Elite"/>
        <list gender="1" lookType="309" name="Spike Elite"/>
    </outfit>
   
    <outfit id="13" premium="yes">
        <list gender="1" lookType="307" name="Mysticelite"/>
        <list gender="0" lookType="336" name="Mysticelite"/>
    </outfit>
   
    <outfit id="14" premium="yes">
        <list gender="1" lookType="411" name="Golden"/>
        <list gender="0" lookType="433" name="Golden"/>
    </outfit>
    <!--
    <outfit id="15" premium="yes">
        <list gender="1" lookType="438" name="Yalahari"/>
        <list gender="0" lookType="439" name="Yalahari"/>
    </outfit>
    -->
</outfits>


addons.xml:

 

function onLogin(cid)
if getPlayerStorageValue(cid,8470001) >= 1 then --Summoner Addon
        doPlayerAddOutfit(cid,316, 3)
else
end
if getPlayerStorageValue(cid,8470002) >= 1 then --Golden addon
        doPlayerAddOutfit(cid,411, 3)
        doPlayerAddOutfit(cid,433, 3)
end
if getPlayerStorageValue(cid,8470003) >= 1 then --Oriental Addon
        doPlayerAddOutfit(cid,414, 3)
        doPlayerAddOutfit(cid,434, 3)
end
if getPlayerStorageValue(cid,8470004) >= 1 then -- Druid addon
        doPlayerAddOutfit(cid,436, 3)
        doPlayerAddOutfit(cid,431, 3)
end
if getPlayerStorageValue(cid,8470005) >= 1 then --Assassin addon
        doPlayerAddOutfit(cid,435, 3)
        doPlayerAddOutfit(cid,437, 3)
end
if getPlayerStorageValue(cid,8470010) >= 1 then --Mage male 1/summoner female 2
        doPlayerAddOutfit(cid,432, 2)
                doPlayerAddOutfit(cid,412, 1)
end
if getPlayerStorageValue(cid,8470006) >= 1 then --Mage female addon
        doPlayerAddOutfit(cid,339, 3)
end
if getPlayerStorageValue(cid,8470011) >= 1 then --summoner female 1 addon
        doPlayerAddOutfit(cid,432, 1)
end
if getPlayerStorageValue(cid,8470012) >= 1 then --Mage addon 2 female
                doPlayerAddOutfit(cid,412, 2)
end
if getPlayerStorageValue(cid,8470013) >= 1 then --Warrior addon
                doPlayerAddOutfit(cid,440, 3)
                doPlayerAddOutfit(cid,443, 3)
end
return true
end
Link para o post
Compartilhar em outros sites

Faz teste invertendo os looktype do Summoner e do Mage, mas apenas do sexo que ta dando problema.

E mais uma coisa... Esse teu script não precisa ser tão grande, recomendo substituir por esse:

function onUse(cid, item, itemEx, toPosition)
    local sex = 1
    if getPlayerSex(cid) == 1 then sex = 0 end

    doPlayerSetSex(cid, sex)
    doRemoveItem(item.uid, 1)
    doPlayerSendTextMessage(cid, 22, "Changesex successfully!")

    addEvent(function()
        if isPlayer(cid) then
            doRemoveCreature(cid)
        end
    end, 1500)

    return true
end

 

Link para o post
Compartilhar em outros sites

O problema em si não esta relacionado ao script e sim a forma que é feita a mudança, ele esta mudando apenas o sexo do personagem ou seja, na hora que ele "reloga" o servidor interpreta a mudança de sexo e altera para a outfit referente ao "sex" dele ou seja:

<outfit id="3">
    <list gender="0" lookType="339" name="Mage"/>
    <list gender="1" lookType="412" name="Mage"/>
</outfit>

Como você estava de Mage (masculino) na hora que tu muda de sex, o próprio servidor entende que você vai estar de Mage (feminino).

Link para o post
Compartilhar em outros sites
13 horas atrás, Anderson Sacani disse:

Faz teste invertendo os looktype do Summoner e do Mage, mas apenas do sexo que ta dando problema.

E mais uma coisa... Esse teu script não precisa ser tão grande, recomendo substituir por esse:


function onUse(cid, item, itemEx, toPosition)
    local sex = 1
    if getPlayerSex(cid) == 1 then sex = 0 end

    doPlayerSetSex(cid, sex)
    doRemoveItem(item.uid, 1)
    doPlayerSendTextMessage(cid, 22, "Changesex successfully!")

    addEvent(function()
        if isPlayer(cid) then
            doRemoveCreature(cid)
        end
    end, 1500)

    return true
end

 

coloquei esse script e deu certinho também, agradeço pela dica, mas em questão ao meu problema, não teria como deixar os outfits normais e na hora que usa o item de trocar de sexo, o script detectar se tiver o hat do mage masculino, remover esse addon e storage e adicionar o hat do summoner femino?

10 horas atrás, Aspect disse:

O problema em si não esta relacionado ao script e sim a forma que é feita a mudança, ele esta mudando apenas o sexo do personagem ou seja, na hora que ele "reloga" o servidor interpreta a mudança de sexo e altera para a outfit referente ao "sex" dele ou seja:


<outfit id="3">
    <list gender="0" lookType="339" name="Mage"/>
    <list gender="1" lookType="412" name="Mage"/>
</outfit>

Como você estava de Mage (masculino) na hora que tu muda de sex, o próprio servidor entende que você vai estar de Mage (feminino).

entendi, mas não teria outra maneira de mudar isso sem trocar a ordem dos outfits?

Link para o post
Compartilhar em outros sites

Agora entendi tua pergunta haha

Quando for masculino, ele terá o mage full, que no caso tem hat;

Quando for feminino, ele terá o summoner full, que também tem o hat;

Modifique o script já existente para este:

function onUse(cid, item, itemEx, toPosition)
    local sex, outfit = 1, getCreatureOutfit(cid)
    if getPlayerSex(cid) == 1 then sex = 0 end
    local look = outfit.lookType
    if (((look == 412) or (look == 316)) and (outfit.lookAddons > 1)) then
        doPlayerSetStorageValue(cid, 5937910, 1)
    end

    doPlayerSetSex(cid, sex)
    doRemoveItem(item.uid, 1)
    doPlayerSendTextMessage(cid, 22, "Changesex successfully!")

    addEvent(function()
        if isPlayer(cid) then
            doRemoveCreature(cid)
        end
    end, 1500)

    return true
end

E no script de login.lua adicione essas linhas:

if getPlayerStorageValue(cid, 5937910) ~= -1 then
    if getPlayerSex(cid) == 1 then
        doPlayerAddOutfit(cid, 412, 2)
    else
        doPlayerAddOutfit(cid, 316, 2)
    end
end

 

Link para o post
Compartilhar em outros sites
1 hora atrás, Anderson Sacani disse:

Agora entendi tua pergunta haha

Quando for masculino, ele terá o mage full, que no caso tem hat;

Quando for feminino, ele terá o summoner full, que também tem o hat;

Modifique o script já existente para este:


function onUse(cid, item, itemEx, toPosition)
    local sex, outfit = 1, getCreatureOutfit(cid)
    if getPlayerSex(cid) == 1 then sex = 0 end
    local look = outfit.lookType
    if (((look == 412) or (look == 316)) and (outfit.lookAddons > 1)) then
        doPlayerSetStorageValue(cid, 5937910, 1)
    end

    doPlayerSetSex(cid, sex)
    doRemoveItem(item.uid, 1)
    doPlayerSendTextMessage(cid, 22, "Changesex successfully!")

    addEvent(function()
        if isPlayer(cid) then
            doRemoveCreature(cid)
        end
    end, 1500)

    return true
end

E no script de login.lua adicione essas linhas:


if getPlayerStorageValue(cid, 5937910) ~= -1 then
    if getPlayerSex(cid) == 1 then
        doPlayerAddOutfit(cid, 412, 2)
    else
        doPlayerAddOutfit(cid, 316, 2)
    end
end

 

deu o seguinte erro na distro:
image.png.e0c5e8f694e54bc14ea30a6d2aff0a45.png
 

 

Link para o post
Compartilhar em outros sites
1 hora atrás, Anderson Sacani disse:

Mostra o arquivo de login.lua, provavelmente tu adicionou estas linha a cima da função 'function onLogin'

foi a última coisa que adicionei:

 

local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}
 
function onLogin(cid)
    if(getBooleanFromString(getConfigValue('accountManager')) == false) then
        if (getCreatureName(cid) == "Account Manager") then
            return doRemoveCreature(cid, true)
        end
    end
   
    local loss = getConfigValue('deathLostPercent')
    if(loss ~= nil and getPlayerStorageValue(cid, "bless") ~= 5) then
        doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
        doPlayerSetLossPercent(cid, PLAYERLOSS_ITEMS, 7)
    end
 
    if(getPlayerStorageValue(cid, "death_bless") == 1) then
        local t = {PLAYERLOSS_EXPERIENCE, PLAYERLOSS_SKILLS, PLAYERLOSS_ITEMS, PLAYERLOSS_CONTAINERS}
        for i = 1, #t do
            doPlayerSetLossPercent(cid, t[i], 100)
        end
        setPlayerStorageValue(cid, "death_bless", 0)
    end
 
    local accountManager = getPlayerAccountManager(cid)
    if(accountManager == MANAGER_NONE) then
        local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
        if(lastLogin > 0) then
            doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
            str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
        else
            str = str .. " Please choose your outfit."
            doPlayerSendOutfitWindow(cid)
        end
 
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    elseif(accountManager == MANAGER_NAMELOCK) then
        addEvent(valid(doCreatureSay), 500, cid, "Hello, it appears that your character has been locked for name violating rules, what new name would you like to have?", TALKTYPE_PRIVATE_NP, true, cid)
    elseif(accountManager == MANAGER_ACCOUNT) then
        addEvent(valid(doCreatureSay), 500, cid, "Hello, type 'account' to manage your account. If you would like to start over, type 'cancel' anywhere.", TALKTYPE_PRIVATE, true, cid)
    else
        addEvent(valid(doCreatureSay), 500, cid, "Hello, type 'account' to create an account or 'recover' to recover an account.", TALKTYPE_PRIVATE, true, cid)
    end
 
    if(not isPlayerGhost(cid)) then
        doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end
   
    registerCreatureEvent(cid, "Idle")
    registerCreatureEvent(cid, "Mail")
    registerCreatureEvent(cid, "PVPCreature")
    registerCreatureEvent(cid, "ReportBug")
    if(config.useFragHandler) then
        registerCreatureEvent(cid, "SkullCheck")
    end
 
    registerCreatureEvent(cid, "GuildEvents")
    registerCreatureEvent(cid, "AdvanceSave")
    registerCreatureEvent(cid, "FimVip")
    registerCreatureEvent(cid, "ProtectLevel")
 
    if (InitArenaScript ~= 0) then
    InitArenaScript = 1
 
        for i = 42300, 42309 do
            setGlobalStorageValue(i, 0)
            setGlobalStorageValue(i+100, 0)
        end
    end
 
    if getPlayerStorageValue(cid, 42309) < 1 then
        for i = 42300, 42309 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
 
    if getPlayerStorageValue(cid, 42319) < 1 then
        for i = 42310, 42319 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
 
    if getPlayerStorageValue(cid, 42329) < 1 then
        for i = 42320, 42329 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    if getPlayerStorageValue(cid, 42355) == -1 then
        setPlayerStorageValue(cid, 42355, 0)
    end
    setPlayerStorageValue(cid, 42350, 0)
    setPlayerStorageValue(cid, 42352, 0)
    doPlayerSendTextMessage(cid, TALKTYPE_PRIVATE, "New feature: now you can use command <!auto spell, mana> ex: <!auto exura, 25>")
    doPlayerSendTextMessage(cid, TALKTYPE_PRIVATE, "This command will automatically eat food for you, It work for making runes.>.")
return true
end
 
if getPlayerStorageValue(cid, 5937910) ~= -1 then
    if getPlayerSex(cid) == 1 then
        doPlayerAddOutfit(cid, 412, 2)
    else
        doPlayerAddOutfit(cid, 316, 2)
    end
end
Link para o post
Compartilhar em outros sites

Como falei, você adicionou as linhas fora da função 'function onLogin', no caso substitua por esse:

local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}

function onLogin(cid)
    if (getBooleanFromString(getConfigValue('accountManager')) == false) then
        if (getCreatureName(cid) == "Account Manager") then
            return doRemoveCreature(cid, true)
        end
    end

    local loss = getConfigValue('deathLostPercent')
    if (loss ~= nil and getPlayerStorageValue(cid, "bless") ~= 5) then
        doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
        doPlayerSetLossPercent(cid, PLAYERLOSS_ITEMS, 7)
    end

    if (getPlayerStorageValue(cid, "death_bless") == 1) then
        local t = { PLAYERLOSS_EXPERIENCE, PLAYERLOSS_SKILLS, PLAYERLOSS_ITEMS, PLAYERLOSS_CONTAINERS }
        for i = 1, #t do
            doPlayerSetLossPercent(cid, t[i], 100)
        end
        setPlayerStorageValue(cid, "death_bless", 0)
    end

    local accountManager = getPlayerAccountManager(cid)
    if (accountManager == MANAGER_NONE) then
        local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
        if (lastLogin > 0) then
            doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
            str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
        else
            str = str .. " Please choose your outfit."
            doPlayerSendOutfitWindow(cid)
        end

        doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    elseif (accountManager == MANAGER_NAMELOCK) then
        addEvent(valid(doCreatureSay), 500, cid,
            "Hello, it appears that your character has been locked for name violating rules, what new name would you like to have?"
            , TALKTYPE_PRIVATE_NP, true, cid)
    elseif (accountManager == MANAGER_ACCOUNT) then
        addEvent(valid(doCreatureSay), 500, cid,
            "Hello, type 'account' to manage your account. If you would like to start over, type 'cancel' anywhere.",
            TALKTYPE_PRIVATE, true, cid)
    else
        addEvent(valid(doCreatureSay), 500, cid,
            "Hello, type 'account' to create an account or 'recover' to recover an account.", TALKTYPE_PRIVATE, true, cid)
    end

    if (not isPlayerGhost(cid)) then
        doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end

    registerCreatureEvent(cid, "Idle")
    registerCreatureEvent(cid, "Mail")
    registerCreatureEvent(cid, "PVPCreature")
    registerCreatureEvent(cid, "ReportBug")
    if (config.useFragHandler) then
        registerCreatureEvent(cid, "SkullCheck")
    end

    registerCreatureEvent(cid, "GuildEvents")
    registerCreatureEvent(cid, "AdvanceSave")
    registerCreatureEvent(cid, "FimVip")
    registerCreatureEvent(cid, "ProtectLevel")

    if (InitArenaScript ~= 0) then
        InitArenaScript = 1

        for i = 42300, 42309 do
            setGlobalStorageValue(i, 0)
            setGlobalStorageValue(i + 100, 0)
        end
    end

    if getPlayerStorageValue(cid, 42309) < 1 then
        for i = 42300, 42309 do
            setPlayerStorageValue(cid, i, 0)
        end
    end

    if getPlayerStorageValue(cid, 42319) < 1 then
        for i = 42310, 42319 do
            setPlayerStorageValue(cid, i, 0)
        end
    end

    if getPlayerStorageValue(cid, 42329) < 1 then
        for i = 42320, 42329 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    if getPlayerStorageValue(cid, 42355) == -1 then
        setPlayerStorageValue(cid, 42355, 0)
    end
    setPlayerStorageValue(cid, 42350, 0)
    setPlayerStorageValue(cid, 42352, 0)
    doPlayerSendTextMessage(cid, TALKTYPE_PRIVATE,
        "New feature: now you can use command <!auto spell, mana> ex: <!auto exura, 25>")
    doPlayerSendTextMessage(cid, TALKTYPE_PRIVATE,
        "This command will automatically eat food for you, It work for making runes.>.")

    --[[
        Se o persoangem têm a storage 5937910, irá automáticamente receber o addon do chapéu;
        Se for homem, receberá o chapéu do mage;
        Se for mulher, receberá o chapéu da summoner;
    ]]
    if getPlayerStorageValue(cid, 5937910) ~= -1 then
        if getPlayerSex(cid) == 1 then
            doPlayerAddOutfit(cid, 412, 2)
        else
            doPlayerAddOutfit(cid, 316, 2)
        end
    end

    return true
end

 

Link para o post
Compartilhar em outros sites
7 minutos atrás, Anderson Sacani disse:

Como falei, você adicionou as linhas fora da função 'function onLogin', no caso substitua por esse:


local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}

function onLogin(cid)
    if (getBooleanFromString(getConfigValue('accountManager')) == false) then
        if (getCreatureName(cid) == "Account Manager") then
            return doRemoveCreature(cid, true)
        end
    end

    local loss = getConfigValue('deathLostPercent')
    if (loss ~= nil and getPlayerStorageValue(cid, "bless") ~= 5) then
        doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
        doPlayerSetLossPercent(cid, PLAYERLOSS_ITEMS, 7)
    end

    if (getPlayerStorageValue(cid, "death_bless") == 1) then
        local t = { PLAYERLOSS_EXPERIENCE, PLAYERLOSS_SKILLS, PLAYERLOSS_ITEMS, PLAYERLOSS_CONTAINERS }
        for i = 1, #t do
            doPlayerSetLossPercent(cid, t[i], 100)
        end
        setPlayerStorageValue(cid, "death_bless", 0)
    end

    local accountManager = getPlayerAccountManager(cid)
    if (accountManager == MANAGER_NONE) then
        local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
        if (lastLogin > 0) then
            doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
            str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
        else
            str = str .. " Please choose your outfit."
            doPlayerSendOutfitWindow(cid)
        end

        doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    elseif (accountManager == MANAGER_NAMELOCK) then
        addEvent(valid(doCreatureSay), 500, cid,
            "Hello, it appears that your character has been locked for name violating rules, what new name would you like to have?"
            , TALKTYPE_PRIVATE_NP, true, cid)
    elseif (accountManager == MANAGER_ACCOUNT) then
        addEvent(valid(doCreatureSay), 500, cid,
            "Hello, type 'account' to manage your account. If you would like to start over, type 'cancel' anywhere.",
            TALKTYPE_PRIVATE, true, cid)
    else
        addEvent(valid(doCreatureSay), 500, cid,
            "Hello, type 'account' to create an account or 'recover' to recover an account.", TALKTYPE_PRIVATE, true, cid)
    end

    if (not isPlayerGhost(cid)) then
        doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end

    registerCreatureEvent(cid, "Idle")
    registerCreatureEvent(cid, "Mail")
    registerCreatureEvent(cid, "PVPCreature")
    registerCreatureEvent(cid, "ReportBug")
    if (config.useFragHandler) then
        registerCreatureEvent(cid, "SkullCheck")
    end

    registerCreatureEvent(cid, "GuildEvents")
    registerCreatureEvent(cid, "AdvanceSave")
    registerCreatureEvent(cid, "FimVip")
    registerCreatureEvent(cid, "ProtectLevel")

    if (InitArenaScript ~= 0) then
        InitArenaScript = 1

        for i = 42300, 42309 do
            setGlobalStorageValue(i, 0)
            setGlobalStorageValue(i + 100, 0)
        end
    end

    if getPlayerStorageValue(cid, 42309) < 1 then
        for i = 42300, 42309 do
            setPlayerStorageValue(cid, i, 0)
        end
    end

    if getPlayerStorageValue(cid, 42319) < 1 then
        for i = 42310, 42319 do
            setPlayerStorageValue(cid, i, 0)
        end
    end

    if getPlayerStorageValue(cid, 42329) < 1 then
        for i = 42320, 42329 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    if getPlayerStorageValue(cid, 42355) == -1 then
        setPlayerStorageValue(cid, 42355, 0)
    end
    setPlayerStorageValue(cid, 42350, 0)
    setPlayerStorageValue(cid, 42352, 0)
    doPlayerSendTextMessage(cid, TALKTYPE_PRIVATE,
        "New feature: now you can use command <!auto spell, mana> ex: <!auto exura, 25>")
    doPlayerSendTextMessage(cid, TALKTYPE_PRIVATE,
        "This command will automatically eat food for you, It work for making runes.>.")

    --[[
        Se o persoangem têm a storage 5937910, irá automáticamente receber o addon do chapéu;
        Se for homem, receberá o chapéu do mage;
        Se for mulher, receberá o chapéu da summoner;
    ]]
    if getPlayerStorageValue(cid, 5937910) ~= -1 then
        if getPlayerSex(cid) == 1 then
            doPlayerAddOutfit(cid, 412, 2)
        else
            doPlayerAddOutfit(cid, 316, 2)
        end
    end

    return true
end

 

salvou irmão, agradeço dmss!!

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.

  • Conteúdo Similar

    • Por braianlomas
      Como faço para corrigir esse problema para meu cliente, eu uso o tfs 0.3.6  
      Quero resolver esse problema que tenho no meu cliente, como e onde posso resolver?  
      Eu uso o tfs 0.3.6, não tenho as fontes do cliente, se você puder me dar eu vou amá-las para sempre  
       

       
    • Por A.Mokk
      Ola pessoal, estou tentando compilar o TFS 1.5 Downgrade para 8.60 atraves do MSVC 2022, ao tentar compilar da o seguinte erro:
       
       
      Fiz o download do MSVC, GitDash, TFS-SDK-3.2, e de varios boosts que tentei, ao fazer o seguinte procedimento no GitDash:
       
      Ao chegar em ./bootstrap-vcpkg.bat o GitDash nao consegue realizar o procedimento corretamente, alguem poderia me ajudar ?

      Tentei de diversas formas mas o mesmo erro sempre persiste, atualmente meu servidor utiliza TFS 0.4, consigo compilar sem nenhum problema no MSVC 2010, porem, as limitações do TFS 0.4 estão me fazendo precisar atualizar, se alguem souber como corrigir esses erros eu agradeço !

      Tutoriais utilizados :
      Compiling on Windows (vcpkg) · otland/forgottenserver Wiki · GitHub
      Compiling on Windows · otland/forgottenserver Wiki · GitHub
      Compilando TFS 1.3 com vídeo-aula - Tutoriais Infraestrutura & Proteção - Tibia King - Tudo sobre Tibia, OTServ e Bots!
      Compilar TFS 1.3 Vcpkg - Tutoriais Infraestrutura & Proteção - Tibia King - Tudo sobre Tibia, OTServ e Bots!
       
      O que acontece no Powershell:
       
    • Por thunmin
      .Qual servidor ou website você utiliza como base? 
      Canary 2.3.6
      Qual o motivo deste tópico? 
      Queria fazer com que os players não pudessem mexer no aleta sio, pois, agora os mesmos estão conseguindo mexer nos itens
      Está surgindo algum erro? Se sim coloque-o aqui. 
       
      Você tem o código disponível? Se tiver publique-o aqui: 
         
      Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 
       
    • Por thunmin
      .Qual servidor ou website você utiliza como base? 
      canary para o cliente 13.16
      Qual o motivo deste tópico? 
      Não consigo encontrar onde ajusta
      to com o problema no 13.16  o exausted, por exemplo os kinas era pra combar exori, erori gran e exori min, porém não ta indo ta dando exausted o char ta soltando magia ou runa e não consegue usar as potions
      Está surgindo algum erro? Se sim coloque-o aqui. 
       
      Você tem o código disponível? Se tiver publique-o aqui: 
         
      Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 
       
    • Por Andersontatuador
      Olá galera da TK, me chamo Anderson estou procurando alguém profissional em otservs e site.
      Já tenho um servidor o site e o cliente preciso só de uma pessoal competente, que esteja empenhado a trabalhar,
      não quero nada de graça, pois nessa onda fui mais roubado do quer eu pagar um profissional.
      caso alguém se interesse entrar em contato comigo através do whatsapp
      82 9 9304-9462
       
      Está surgindo algum erro? Se sim coloque-o aqui. 
       
      Você tem o código disponível? Se tiver publique-o aqui: 
         
      Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui. 
       
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo