Plantando Planta
Editando os itens
-
Acesse a seguinte pasta: data/itens
- Vá em itens.xml e proucure por 293
Substitue por isso:
<item id="293" name="Solo Plantado"> </item>
- Procure por 2147
Substitue por isso:
<item id="2147" article="a" name="Semente" plural="Sementes"> <attribute key="weight" value="10"/> </item>
A Action
- Vá em data/actions
- Acesse esse arquivo: actions.xml
Acresente isso:
<!-- Colendo Sementes by Northon --> <action itemid="2552" script="Colendo.lua" /> <!-- Plantando Sementes no Solo by Northon --> <action itemid="2147" script="Solo.lua" /> <!-- Plantando Planta by Northon --> <action itemid="2553" script="Plantando.lua" />
- Acesse agora a pasta scripts que se encontra dentro da pasta actions
Copie 3 arquivos, e ronomei por isso:
1º Arquivo -> Colendo.lua
2º Arquivo -> Solo.lua
3º Arquivo -> Plantando.lua
- Pegue o 1º arquivo e cole isso:
-- Coletando System by Northon function onUse(cid, item, frompos, item2, topos) if item2.itemid == 2768 then doPlayerAddItem(cid,2147,3) doPlayerSendTextMessage(cid,22,"Voce conseguiu a semente!") doDecayItem(item2.uid) else return 0 end return 1 end
- Pegue o 2º arquivo e cole isso:
-- Plantando Semente System by Northon function onUse(cid, item, frompos, item2, topos) if item2.itemid == 4526 then doTransformItem(item2.uid,293) doPlayerSendTextMessage(cid,22,"Você Plantou a semente no solo!") doDecayItem(item2.uid) else return 0 end return 1 end
- Pegue o 3º arquivo e cole isso:
-- Plantando Planta System by Northon function onUse(cid, item, frompos, item2, topos) if item2.itemid == 293 then doPlayerAddItem(cid,2741,3) doPlayerSendTextMessage(cid,22,"Você Plantou uma planta sendo assim ajudou a combater o aquecimento global, ganhe de recompensa 3 GP!") doPlayerAddItem(cid,2148,3) doDecayItem(item2.uid) else return 0 end return 1 end
Imagem

Como Usar
- Vá na árvore pequena, pega pá no caso é a hoe, de use na árvore, você irá adquirir 3 sementes.
- Pegue a semente e plante no lugar onde você deseja, assim irá aparecer o solo pintado.
- Pega a pick é de use no solo plantado, você ganhará 3 GP por ajudar a combater o aquecimanto global e irá ganhar a flor, coloque a onde quiser.