Postado Maio 24, 2015 9 anos Autor Em 24/05/2015 em 00:45, alexxxxxxx disse: pronto resolvido agora vai kkkkk Mostrar conteúdo oculto Mostrar conteúdo oculto <?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 = {1988, 1987, 2382, 2120, 2580, 2550, 7385, 2395, 0} -- 7385 (pokeinfo) ok -- 2395 (portfoil) ok -- 2382 (pokedex) ok -- 2547 (coin case) ok -- 2550 (order) ok -- 1987 (bag) ok -- 1988 (badge case) ok -- 2120 (rope) ok -- 2580 (fishing rod) ok } ]]> </config> <event type="login" name="FirstItems" event="script"> <![CDATA[ domodlib('firstitems_config') function onLogin(cid) if getCreatureName(cid) == "Account Manager" then doSetCreatureOutfit(cid, {lookType = 655}, -1) return true end if getPlayerSlotItem(cid, CONST_SLOT_ARMOR).itemid > 0 then return true end for _, id in ipairs(config.items) do doPlayerAddItem(cid, id, 1) doPlayerAddItem(cid, 12344, 30) doPlayerAddItem(cid, 2392, 35) doPlayerAddItem(cid, 2160, 1) doPlayerAddItem(cid, 12245, 1) doPlayerAddItem(cid, 27669, 1) doPlayerAddItem(cid, 27670, 1) end local bag = getPlayerItemById(cid, false, 1988).uid doPlayerAddItem(bag, 12267, 1) doPlayerAddItem(bag, 12266, 1) doPlayerAddItem(bag, 12264, 1) doPlayerAddItem(bag, 12265, 1) doPlayerAddItem(bag, 12263, 1) doPlayerAddItem(bag, 12262, 1) doPlayerAddItem(bag, 12261, 1) doPlayerAddItem(bag, 12260, 1) return true end ]]></event> </mod> kkkkkkkkkkkkkk agora ta enchendo todo o invetario de uma vez só, e ainda cai no chao
Postado Maio 24, 2015 9 anos Diretor editei olha lá em cima ai faz um bau ao clica pra pegar os first itens agora insignas vou deixar ela pra vc vou fazer aqui. Editado Maio 24, 2015 9 anos por alexxxxxxx (veja o histórico de edições)
Postado Maio 24, 2015 9 anos Autor Em 24/05/2015 em 00:55, alexxxxxxx disse: editei olha lá em cima vlw ai vou ter que sair, tenho uma formatura pra ir, vou testar aqui, qualquer coisa mais tarde ou amanhã posto aqui no topico de novo pedindo ajuda
Postado Maio 24, 2015 9 anos Diretor mods <?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 = 30002, items = {1988, 1987, 2382, 2120, 2580, 2550, 7385, 2395, 0} -- 7385 (pokeinfo) ok -- 2395 (portfoil) ok -- 2382 (pokedex) ok -- 2547 (coin case) ok -- 2550 (order) ok -- 1987 (bag) ok -- 1988 (badge case) ok -- 2120 (rope) ok -- 2580 (fishing rod) ok } ]]> </config> <event type="login" name="FirstItems" event="script"> <![CDATA[ domodlib('firstitems_config') function onLogin(cid) if getCreatureName(cid) == "Account Manager" then doSetCreatureOutfit(cid, {lookType = 655}, -1) return true end if getPlayerSlotItem(cid, CONST_SLOT_ARMOR).itemid > 0 then return true end for _, id in ipairs(config.items) do doPlayerAddItem(cid, id, 1)) end local bag = getPlayerItemById(cid, false, 1988).uid doAddContainerItem(bag, 12267, 1) doAddContainerItem(bag, 12266, 1) doAddContainerItem(bag, 12264, 1) doAddContainerItem(bag, 12265, 1) doAddContainerItem(bag, 12263, 1) doAddContainerItem(bag, 12262, 1) doAddContainerItem(bag, 12261, 1) doAddContainerItem(bag, 12260, 1) return true end ]]></event> </mod> add isso no login.lua em creaturescripts qualquer lugar depois de end if getPlayerStorageValue(cid, 30001) == -1 then doPlayerAddItem(cid, 12344, 30) doPlayerAddItem(cid, 2392, 35) doPlayerAddItem(cid, 2160, 1) doPlayerAddItem(cid, 12245, 1) doPlayerAddItem(cid, 27669, 1) doPlayerAddItem(cid, 27670, 1 end setPlayerStorageValue(cid, 30001, 1) end Editado Maio 24, 2015 9 anos por alexxxxxxx (veja o histórico de edições)
Postado Maio 24, 2015 9 anos <?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 = {1988, 1987, 2382, 2120, 2580, 2550, 7385, 2395, 0} -- 7385 (pokeinfo) -- 2395 (portfoil) ok -- 2382 (pokedex) ok -- 0 (coin case) ok -- 2550 (order) ok -- 1987 (bag) ok -- 1988 (badge case) ok -- 2120 (rope) ok -- 2580 (fishing rod) ok } ]]></config> <event type="login" name="FirstItems" event="script"><![CDATA[ domodlib('firstitems_config') function onLogin(cid) if getPlayerStorageValue(cid, config.storage) > -1 then return true end if getCreatureName(cid) == "Account Manager" then doSetCreatureOutfit(cid, {lookType="511"}, 1) return true end setPlayerStorageValue(cid, config.storage, 1) if getPlayerSlotItem(cid, CONST_SLOT_ARMOR).itemid > 0 then local bag = getPlayerItemById(cid, false, 1987).uid doAddContainerItem(bag, 12344, 30) doAddContainerItem(bag, 2392, 35) doAddContainerItem(bag, 2160, 1) doAddContainerItem(bag, 12245, 1) doAddContainerItem(bag, 27669, 1) doAddContainerItem(bag, 27670, 1) return true end for _, id in ipairs(config.items) do doPlayerAddItem(cid, id, 1) end local bag = getPlayerItemById(cid, false, 1988).uid doAddContainerItem(bag, 12267, 1) doAddContainerItem(bag, 12266, 1) doAddContainerItem(bag, 12264, 1) doAddContainerItem(bag, 12265, 1) doAddContainerItem(bag, 12263, 1) doAddContainerItem(bag, 12262, 1) doAddContainerItem(bag, 12261, 1) doAddContainerItem(bag, 12260, 1) return true end ]]></event> </mod>
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.