Ir para conteúdo

Alguem Poderia Ajudar Nesse Mod


SecondHeartbeat

Posts Recomendados

Eu quero que o player começe com

katana

chain armor

chain helmet

chain legs

Cooper shield

e para adicionar ao mod abaixo agradeço desde ja!

 

 

<?xml version="1.0" encoding="UTF-8"?>

<mod name="First Items" version="1.0" author="Dener Diegoli" contact="dener_d1@hotmail.com" enabled="yes">

<config name="firstitems_config"><![CDATA[

config = {

storage = 30001,

items = {2050, 2412}

}

]]></config>

<event type="login" name="FirstItems" event="buffer"><![CDATA[

domodlib('firstitems_config')

if(getPlayerStorageValue(cid, config.storage) > 0) then

return

end

 

for _, id in ipairs(config.items) do

doPlayerAddItem(cid, id, 1)

end

 

if(getPlayerSex(cid) == PLAYERSEX_FEMALE) then

doPlayerAddItem(cid, 2464, 1)

else

doPlayerAddItem(cid, 2464, 1)

end

 

doAddContainerItem(doPlayerAddItem(cid, 2000, 1), 2674, 20)

setPlayerStorageValue(cid, config.storage, 1)

]]></event>

</mod>

Link para o comentário
Compartilhar em outros sites

usa o meu cara q é configuravel -- vo posta abaixo, se ajudei n eskece de da mais rep so clica ali na cruzinha +

 

<?xml version="1.0" encoding="UTF-8"?>
<mod name="First Items" version="1.0" author="The Forgotten Server" contact="otland.net" 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
			{2190}, -- wand of vortex
			{2175}, -- spellbook
			{8820}, -- mage hat
			{8819} -- mage robe
		},
		{ -- DRUID
			{2182}, -- snakebite rod
			{2175}, -- spellbook
			{8820}, -- mage hat
			{8819} -- mage robe
		},
		{ -- PALADIN
			{2389, 6}, -- spear
			{2530}, -- copper shield
			{2480}, -- legion helmet
			{2464} -- chain armor
		},
		{ -- KNIGHT
			{2409}, -- serpent sword
			{2530}, -- copper shield
			{2480}, -- legion helmet
			{2464} -- chain armor
		}
	},
	all_items = {
		{2468}, -- studded legs
		{2643} -- leather boots
	},
	extra_items = {
		{2789, 100},
		{2120},
		{2152, 20},
		{5710}
	},
	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

  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...