Ksuri
|
Wysłany:
Śro 14:20, 23 Lip 2008 Temat postu: |
|
www.google.pl
Cytat: |
Oto skrypt Manarune do własnego OTS'a:
Robisz plik manarune.lua w data\actions\scripts i kopiujesz tam jakis plik (znajdujący się tam) opróżniasz, zmieniasz nazwe pliku na manarune i wklejasz to:
Cytat: |
--Manarune By Guzur--
function onUse(cid, item, frompos, item2, topos)
if item.itemid == 2270 and item.type > 1 then
doPlayerAddMana(cid,8000)
doChangeTypeItem(item.uid,item.type-1)
doSendMagicEffect(topos,12)
doPlayerSay(cid,"Mniam...",1)
else
doRemoveItem(item.uid,1)
end
return 1
end
|
Następnie otwierasz plik actions.xml w data\actions i dopisujesz to:
Cytat: |
<action itemid="2270" script="manarune.lua" /> |
Gdy to juz zrobisz wchodzisz w data/npc/script
i szukasz npc który sprzedaje runy i musisz mu tam dopisać taki link(wklejasz go tam gdzie masz podane podobne takie linijki z sd, hmm, gfb):
Cytat: |
elseif msgcontains(msg, 'manarune') then
buy(cid,2270,100,10) |
Musisz mu jeszcze dopisac za ile ma sprzedawać rune czyli dajesz troche wyżej i tam pisze:<cytat>
Cytat: |
if msgcontains(msg, 'runes') then
selfSay('I sell hmms (40gps), uhs (40gps), gfbs (60gps), manarune (10gps), explosions (60gps), sds (90gps) and blank runes (5gps). To buy more runes say "10 uh" or "100 sd".')
elseif msgcontains(msg, 'wands') then
selfSay('I sell wand of inferno (15k), plague (5k), cosmic energy (10k), vortex (500gp) and dragonbreath (1k).') |
xD
|
|
|