Adminjacek
Administrator
Dołączył: 28 Paź 2006 Posty: 58
Przeczytał: 0 tematów
Ostrzeżeń: 0/10
|
Wysłany: Czw 21:50, 09 Lis 2006 Temat postu: Zegarek w tibi 7.6 |
|
|
skrypt Mój i admina tomka
Kod: | zauważyłem że drzewka są nie używane więc nadałem im funkcje. Te akciony świetnie działają na deatchtouch
1 snow ball tree
Opis: Jest drzewko dające snow balle
ten akcion robimy w data/akcion/script o nazwie snowballtree
Kod:
function onUse(cid, item, frompos, item2, topos)
snowtreeid = 2697 -- Itemid of the snow ball tree
treeid = 2710 -- Itemid of the empty snow ball tree
snowid = 2111 -- Itemid of snowball
doTransformItem(item.uid, treeid)
doCreateItem(dnowballid, 3, frompos)
end
a ten kod robimy w data\actions i edytujemy plik actions.xml i dodajemy tam:
Kod:
<action itemid="2697" script="snowballtree" />
tree Of Apple
Opis: drzewko dająca jabłka
ten akcion robimy w data/akcion/script o nazwie appletree
Kod:
function onUse(cid, item, frompos, item2, topos)
appletreeid = 2703 -- Itemid of the apple tree
treeid = 2706 -- Itemid of the empty apple tree
appleid = 2674 -- Itemid of apple
doTransformItem(item.uid, treeid)
doCreateItem(appleid, 4, frompos)
end
a ten kod robimy w data\actions i edytujemy plik actions.xml i dodajemy tam:
Kod:
<action itemid="2703" script="appletree" />
Carrot Tree
Opis: krzak dawający marchewki
ten akcion robimy w data/akcion/script o nazwie carrottree
Kod:
function onUse(cid, item, frompos, item2, topos)
carrottreeid = 4012 -- Itemid of the carrot tree
treeid = 4013 -- Itemid of the empty carrot tree
carrotid = 2684 -- Itemid of carrot
doTransformItem(item.uid, treeid)
doCreateItem(carrotid, 1, frompos)
end
a ten kod robimy w data\actions i edytujemy plik actions.xml i dodajemy tam:
Kod:
<action itemid="4012" script="carrottree" />
jeśli chcecie zmienić ilośc wypadająjących, owoców lub snowballa zmieńcie tą linijke
Kod:
doCreateItem(carrotid, 1- tu zmięńcie ilość na jąką chcecie można zmieniać od 1 do 100, frompos)
w miare czasu dodam więcej drzewek i przez te akciony ludzie będą mogli zakładać gospodarstwa i robić turnieje snieżne, w końcu będziecie mogli zdobyć snowballe |
Post został pochwalony 0 razy
|
|