Ir para conteúdo

[Gesior][PDA] Kit Inicial


Taiger

Posts Recomendados

Ola amigos, estou configurando um gesior 2012 ultima versao para meu servidor de Poketibia(PDA), ja configurei a criação do char e escolha da city pelo site, só que o player esta nascendo sem nada na bag, queria que ele começace com um kit inicial configuravel, tem como alguem me ajudar?

Link para o comentário
Compartilhar em outros sites

Tópico movido para a área correta. Acredito que um creaturescript Onlogin, resolve o problema(e será mais fácil do fazer um sistema no gesior).

Link para o comentário
Compartilhar em outros sites

Uso esse é só jogar em MODS e só alegria espero ter ajudado, se não gostar é só mudar os id dos itens sem bug perfeito eu mesmo que arrumei vlws até mais.


Cria um arquivo com o nome Firstitems.xml e joga isso lá dentro da pasta MODS.



<?xml version="1.0" encoding="UTF-8"?>
<mod name="First Items" version="1.0" author="Tibia Brasil OT" contact="tibiabrasilot@r7.com" enabled="yes">
<config name="firstitems_config"><![CDATA[
config = {
storage = 30001,
items = {2050, 2382}
}
]]></config>
<event type="login" name="FirstItems" event="script"> <![CDATA[
domodlib('firstitems_config')

function onLogin(cid)
local config = {
voc_items = {
{ -- SORC
{2175}, -- spellbook
{2190}, -- wand of vortex
{8820}, -- mage hat
{8819}, -- mage robe
{2148, 150} -- Gold Coins
},
{ -- DRUID
{2175}, -- spellbook
{2182}, -- snakebite rod
{8820}, -- mage hat
{8819}, -- mage robe
{2148, 150} -- Gold Coins
},
{ -- PALADIN
{2530}, -- copper shield
{2389, 5}, -- Spears
{2480}, -- legion helmet
{2464}, -- chain armor
{2148, 100} -- Gold Coins
},
{ -- KNIGHT
{2409}, -- serpent sword
{2530}, -- copper shield
{2480}, -- legion helmet
{2464}, -- chain armor
{2148, 150} -- Gold Coins
}
},
all_items = {
{2468}, -- studded legs
{2643} -- leather boots
},
extra_items = {
{2789, 15}, -- Brown Mushrooms
{2120}, -- Rope
{2554} -- Shovel
},
knight_weapons = {
{2423}, -- clerical mace
{2429} -- barbarian axe
}
}
if getPlayerGroupId(cid) < 3 then
if getPlayerStorageValue(cid, storage) == -1 then
local common = config.voc_items[getPlayerVocation(cid)]
if common ~= nil then
for _, v in ipairs(common) do
doPlayerAddItem(cid, v[1], v[2] or 1)
end
end

local all = config.all_items
if all ~= nil then
for _, v in ipairs(all) do
doPlayerAddItem(cid, v[1], v[2] or 1)
end
end

local extra = config.extra_items
local bp = doPlayerAddItem(cid, 1988, 1)
if extra ~= nil then
for _, v in ipairs(extra) do
doAddContainerItem(bp, v[1], v[2] or 1)
end
end

local weapons = config.knight_weapons
if weapons ~= nil then
for _, w in ipairs(weapons) do
if isKnight(cid) then
doAddContainerItem(bp, w[1], w[2] or 1)
end
end
end

setPlayerStorageValue(cid, storage, 1)
end
end
return true
end
]]></event>
</mod>
Link para o comentário
Compartilhar em outros sites

  • 1 month later...

O tópico foi fechado e movido para lixeira por estar inativo a mais de 10 dias. Caso seja preciso reabrir o mesmo, favor entrar em contato com a equipe.

Link para o comentário
Compartilhar em outros sites

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