Old School Server
Welcome 2 Old School
FAQ
Search
Memberlist
Usergroups
Galleries
Register
Profile
Log in to check your private messages
Log in
Old School Server Forum Index
->
Skrypty
Post a reply
Username
Subject
Message body
Emoticons
View more Emoticons
Font colour:
Default
Dark Red
Red
Orange
Brown
Yellow
Green
Olive
Cyan
Blue
Dark Blue
Indigo
Violet
White
Black
Font size:
Tiny
Small
Normal
Large
Huge
Close Tags
Options
HTML is
ON
BBCode
is
ON
Smilies are
OFF
Disable HTML in this post
Disable BBCode in this post
Confirmation code: *
All times are GMT + 2 Hours
Jump to:
Select a forum
Old School Server
----------------
Old School Kumasz?
Regulamin
Bugi
Help
Trade
Questy
Czary
Nowe Itemy I Potwory
Filmy
Screeny
Gildie
Bany
OTS
Zażalenia
Płatności
----------------
Płatności
Open Tibia Server - Sprawy Techniczne
----------------
Pomoc
Skrypty
Pogaduszki & Humor
----------------
Free Style
Download
----------------
Programy
Music
Filmy
Erotyka
Old Topics
----------------
Stare Tematy
Topic review
Author
Message
RHTM
Posted: Mon 10:54, 09 Apr 2007
Post subject:
Sorcerer wrote:
Hmm... Może masz inna wersje skryptu ? bo ja edytowałem i mam tak ile dam tyle robi :D
A na nie których OTS nie da sie zrobić 100 MPA wpisując np. /i 8888 100 a u mnie da :)
hmm... nie wiem nie spotkalem sie jeszcze z takim otsem xD
Sorcerer
Posted: Mon 10:08, 09 Apr 2007
Post subject:
Hmm... Może masz inna wersje skryptu ? bo ja edytowałem i mam tak ile dam tyle robi :D
A na nie których OTS nie da sie zrobić 100 MPA wpisując np. /i 8888 100 a u mnie da :)
RHTM
Posted: Mon 0:22, 09 Apr 2007
Post subject:
Sorcerer wrote:
klikasz na siebie dodajesz 400 max (chyba ze masz mniej) manny i klikając na to dodajesz tyle manny ile tam jest i nie tak jak pisal rht tylko aby to zrobic wpisujesz
/i 4864 1 (i masz w tym 1 many)
/i 4864 100 (masz 100)
Raczej my nie działało /i 4864 100 (masz 100) poniewaz moza było by zrobic tylko jeden ziornik, to tak sało jak bys chciał zrobic tak np. 100 MPA
Sorcerer
Posted: Sun 23:10, 08 Apr 2007
Post subject:
klikasz na siebie dodajesz 400 max (chyba ze masz mniej) manny i klikając na to dodajesz tyle manny ile tam jest i nie tak jak pisal rht tylko aby to zrobic wpisujesz
/i 4864 1 (i masz w tym 1 many)
/i 4864 100 (masz 100)
Shadow smierci
Posted: Sat 14:11, 07 Apr 2007
Post subject:
eee tam to max Muminek moze przez to pasc;/
RHTM
Posted: Sat 14:08, 07 Apr 2007
Post subject:
tak chyba 400 many można max xD
eVul
Posted: Sat 14:05, 07 Apr 2007
Post subject:
Chyba jest limit, bo tak to gra nie miałaby sensu...
Shadow smierci
Posted: Sat 14:04, 07 Apr 2007
Post subject:
taaa... se sork idzie pakuje all mane do zbiorniczka potem ktos mu sciaga knighta np. slowlego i ten wali spam love laduej mane i poprawa i slwoly pada,,xD??
Gumis Mkr
Posted: Sat 14:03, 07 Apr 2007
Post subject:
chyba max zabiera ci 400
eVul
Posted: Sat 14:01, 07 Apr 2007
Post subject:
Bardzo przydatne.
Btw. Jak określimy ile many chcemy zostawić?
RHTM
Posted: Sat 14:00, 07 Apr 2007
Post subject: [7.6][lua] Zbiornik Na Mane.
Witam.Skrtpt polega na :
-wysysaniu many do zbiornika)przechowanie
-wypijaniu many ze zbiornika kiedy chcemy
Przykład: idziemy sobie i jezeli mamy za duzo many i jest niepotzrebna klikamy na zbiornik i uzywamy go na siebie.nastepnie gd jest nam brak many mozemy wypic to o wczesniej zostawilismy ;)
Tworzymy zbiornik.lua
Code:
function onUse(cid,item,frompos,item2,topos)
maxmana = 400 -- ile many ma dodawać
notfullmana = getPlayerMana(cid)
if item.itemid == 4864 then
doTransformItem(item2.uid,4863)
doPlayerAddMana(cid,getPlayerStorageValue(cid,1))
doPlayerSendCancel(cid,'You recovered ' .. getPlayerStorageValue(cid,1) .. ' of mana.')
doSendMagicEffect(topos,1)
elseif item.itemid == 5884 and getPlayerMana(cid) >= maxmana-getPlayerStorageValue(cid,1) then
doTransformItem(item.uid,4864)
doPlayerSendCancel(cid,'You kept more '.. maxmana-getPlayerStorageValue(cid,1) ..' of mana.')
doPlayerAddMana(item2.uid,maxmana-getPlayerStorageValue(cid,1))
doSendMagicEffect(frompos,1)
elseif item.itemid == 5884 then
doTransformItem(item2.uid,4863)
doPlayerAddMana(cid,getPlayerStorageValue(cid,1))
doPlayerSendCancel(cid,'You recovered ' .. getPlayerStorageValue(cid,1) .. ' of mana.')
setPlayerStorageValue(cid,1,1)
doSendMagicEffect(topos,1)
elseif getPlayerMana(cid) >= maxmana and item.itemid == 4863 then
doTransformItem(item.uid,4864)
doPlayerSendCancel(cid,"You kept ' .. maxmana .. ' of mana.")
doPlayerAddMana(item2.uid,-maxmana)
setPlayerStorageValue(cid,1,maxmana)
doSendMagicEffect(topos,1)
else
doTransformItem(item.uid,5884)
doPlayerSendCancel(cid,'You kept ' .. notfullmana .. ' of mana.')
setPlayerStorageValue(cid,1,notfullmana)
doPlayerAddMana(item2.uid,-notfullmana)
doSendMagicEffect(topos,1)
end
return 1
end
w actions.xml dodajemy:
Code:
<action itemid="4863" script="zbiornik.lua" allowfaruse="0" />
<action itemid="4864" script="zbiornik.lua" allowfaruse="0" />
<action itemid="5884" script="zbiornik.lua" allowfaruse="0" />
potem tworzymy: /i 4836 1 i do dzieła ;)
Skrytp by Medyk II
fora.pl
- załóż własne forum dyskusyjne za darmo
Powered by
phpBB
© 2001, 2002 phpBB Group
Regulamin