• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

problem with script - translation needed.

Sir MoX

New Member
Joined
Jan 14, 2009
Messages
285
Reaction score
1
hi, well I have a server of tibia 7.6 and I would ask if someone could change me the lengauge of the script to english( because is in polack)

please I need because i dont understand when the npc talk xD


Code:
---------------------------Account creator by Bazzag-----------------------------------------

---little config-----------------------------------------
templex = 475
templey = 501
templez = 7
maxnamelen = 10 
maxpasslen = 6 
startlvl = 1 
startexp = 1 
vocations = 1 
healthstart = 150 
manastart = 20 
depoitemid = 2591 
promoted = 0 
---------skills-------------------------
--goku------- 
kmlvl = 1 
kfist = 10 
kclub = 10 
ksword = 10 
kaxe = 10 
kdist = 10 
kshield = 10 
kfish = 10 
kcap = 100 
--vegeta------------ 
pmlvl = 1 
pfist = 10 
pclub = 10 
psword = 10 
paxe = 10 
pdist = 10 
pshield = 10 
pfish = 10 
pcap = 10 
---gohan i trunk---- 
mmlvl = 1 
mfist = 10 
mclub = 10 
msword = 10 
maxe = 10 
mdist = 10 
mshield = 10 
mfish = 10 
mcap = 10 
---end skills -------------------------------
---end little config-----------------------------------------
focus = 0 
talk_start = 0 
target = 0 
following = false 
attacking = false 
accstatus = 0 
seksik = 3 
myname = '' 
mypass = '' 
allow_pattern = '^[a-zA-Z0-9 -]+$' 
origmsg = '' 
mypasscheck = '' 
mynamecheck = '' 
vocation = 0 


function onThingMove(creature, thing, oldpos, oldstackpos) 

end 


function onCreatureAppear(creature) 

end 


function onCreatureDisappear(cid, pos) 
if focus == cid then 
selfSay('Good bye then.') 
focus = 0 
talk_start = 0 
end 
end 


function onCreatureTurn(creature) 

end 
function msgcontains(txt, str) 
return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) 
end 


function onCreatureSay(cid, type, msg) 
origmsg = msg 
msg = string.lower(msg) 



if (msgcontains(msg, 'hi') and focus == 0) and getDistanceToCreature(cid) < 4 then 
selfSay('Witaj. Jestem tu aby pomoc ci stworzyc nowe konto i nowa postac. Jesli chcesz zaczac tworzenie kona to powiedz mi najpierw czy jestes facetem czy kobieta. --facet---kobieta--- ') 
accstatus = 1 
myname = '' 
mypass = '' 
myaccnumber = 0 
focus = cid 
talk_start = os.clock() 


elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then 
selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.') 


elseif focus == cid then 
talk_start = os.clock() 

if accstatus == 1 then 
if msgcontains(msg, 'facet') then selfSay('Dobrze przyjacielu. Teraz podaj mi swoje imie.') 
seksik = 1 
accstatus = 2 
elseif msgcontains(msg, 'kobieta') then 
selfSay('Dobrze moja droga, teraz podaj mi swoje imie.') 
seksik = 0 
accstatus = 2 
end 




elseif accstatus == 66 then 
if msgcontains(msg, 'goku') then 
vocation = 3 
selfSay('goku, tak ?') 

elseif msgcontains(msg, 'vegeta') then 
vocation = 1 
selfSay('vegeta, tak ?') 

elseif msgcontains(msg, 'gohan') then 
vocation = 2 
selfSay('gohan, tak ?') 

elseif msgcontains(msg, 'trunk') then 
vocation = 4 
selfSay('trunk, tak ?') 
else 
selfSay('Co tak mamroczesz, powiedz jeszcze raz.') 
end 

accstatus = 67 


elseif accstatus == 2 then 
myname = origmsg 
mynamecheck = msg 
if string.len(mynamecheck) <= maxnamelen then 
if string.find(mynamecheck, allow_pattern) then 
if io.open("data/players/"..myname..".xml" , "r") == nil then 
selfSay('Chcesz miec na imie '..myname..' tak ?') 
accstatus = 3 
else 
selfSay('To imie jest juz zarezerwowane !! Podaj inne, slucham') 
end 
else 
selfSay('To imie zawiera niedozwolone znaki !! Podaj inne') 
end 
else 
selfSay('To imie jest za dlugie !! Max to 10 znakow ! Podaj inne') 
end 
elseif msgcontains(msg, 'tak') then 
if accstatus == 3 then 
if vocations == 0 then 
selfSay('Dobrze, teraz podaj mi haslo ktorego chcesz uzywac.') 
vocation = 0 
accstatus = 4 
else 
selfSay('Dobrze przyjacielu, teraz podaj czy chcesz byc --vegeta-- czy --trunk-- czy --gohan-- czy --goku--.') 
accstatus = 66 
end 
elseif accstatus == 5 then 
if seksik == 0 then 
selfSay('Wspaniale. Sprawdzmy jeszcze raz: Jestes kobieta o imieniu '..myname..' haslo do twojego konta brzmi '..mypass..'. Numer zostanie wylosowany na koncu. Czy wszystko sie zgadza ??') 
else 
selfSay('Wspaniale. Sprawdzmy jeszcze raz: Jestes facetem o imieniu '..myname..' haslo do twojego konta brzmi '..mypass..'. Numer zostanie wylosowany na koncu. Czy wszystko sie zgadza ??') 
end 
accstatus = 6 
elseif accstatus == 6 then 
selfSay('Doskonale. Czy mozemy przystapic do losowania numeru? --losowanie--bye---') 
accstatus = 7 
elseif accstatus == 67 then 
selfSay('Doskonale. Teraz powiedz jakie chcesz miec haslo.') 
accstatus = 4 
end 
elseif msgcontains(msg, 'nie') then 
if accstatus == 3 then 
selfSay('Podaj inne, slucham') 
accstatus = 2 
elseif accstatus == 5 then 
selfSay('Podaj inne, slucham') 
accstatus = 4 
elseif accstatus == 6 then 
selfSay('Zacznijmy od poczatku: Jestes facetem czy kobieta --facet--kobieta--') 
accstatus = 1 
elseif accstatus == 67 then 
selfSay('Ehhh wiec powiedz jeszcze raz - jaka profesje chcesz miec ?') 
accstatus = 66 
end 
elseif accstatus == 4 then 
mypass = origmsg 
mypasscheck = msg 
if string.len(mypasscheck) <= maxpasslen then 
if string.find(mypasscheck, allow_pattern) then 
selfSay('Twoje haslo bedzie brzmialo '..mypass..' tak ?') 
accstatus = 5 
else 
selfSay('To haslo zawiera niedozwolone znaki !! Podaj inne') 
end 
else 
selfSay('To haslo jest za dlugie !! Max to 6 znakow ! Podaj inne') 
end 

elseif msgcontains(msg, 'losowanie') and accstatus == 7 then 
if manastart == 0 then 
manastartc = 1 
else 
manastartc = manastart 
end 
if healthstart == 0 then 
healthstartc = 1 
else 
healthstartc = healthstart 
end 
if vocations == 0 then 
mlvl = 1 
fist = 10 
club = 10 
sword = 10 
axe = 10 
dist = 10 
shield = 10 
fish = 10 
cap = 100 
else 
if vocation == 1 or vocation == 2 then 
mlvl = mmlvl 
fist = mfist 
club = mclub 
sword = msword 
axe = maxe 
dist = mdist 
shield = mshield 
fish = mfish 
cap = mcap 

elseif vocation == 3 then 
mlvl = pmlvl 
fist = pfist 
club = pclub 
sword = psword 
axe = paxe 
dist = pdist 
shield = pshield 
fish = pfish 
cap = pcap 
elseif vocation == 4 then 
mlvl = kmlvl 
fist = kfist 
club = kclub 
sword = ksword 
axe = kaxe 
dist = kdist 
shield = kshield 
fish = kfish 
cap = kcap 

end 
end 

myaccnumber = math.random(100000,999999) 
if io.open("data/accounts/"..myaccnumber..".xml" , "r") == nil then 
selfSay('wylosowano poprawny numer '..myaccnumber..' Powedz --dalej--') 
accstatus = 8 
f = assert(io.open("./data/accounts/"..myaccnumber..".xml", "w")) 
f = io.open("./data/accounts/"..myaccnumber..".xml", "w") 
f:write("<?xml version=\"1.0\"?><account pass=\""..mypass.."\" type=\"1\" premDays=\"666\"><characters><character name=\""..myname.."\"\/><\/characters><\/account>") 
f:close() 

f = assert(io.open("./data/players/"..myname..".xml", "w")) 
f = io.open("./data/players/"..myname..".xml", "w") 
f:write("<?xml version=\"1.0\"?><player name=\""..myname.."\" account=\""..myaccnumber.."\" sex=\""..seksik.."\" lookdir=\"3\" exp=\""..startexp.."\" voc=\""..vocation.."\" level=\""..startlvl.."\" access=\"0\" cap=\""..cap.."\" maglevel=\""..mlvl.."\" lastlogin=\"0\" premticks=\"0\" promoted=\""..promoted.."\" banned=\"0\"><spawn x=\""..templex.."\" y=\""..templey.."\" z=\""..templez.."\"\/><temple x=\""..templex.."\" y=\""..templey.."\" z=\""..templez.."\"\/><skull type=\"0\" kills=\"0\" ticks=\"0\" absolve=\"0\"\/><health now=\""..healthstart.."\" max=\""..healthstartc.."\" food=\"1000\"\/><mana now=\""..manastartc.."\" max=\""..manastartc.."\" spent=\"1\"\/><look type=\"134\" head=\"77\" body=\"79\" legs=\"78\" feet=\"77\"\/><skills><skill skillid=\"0\" level=\""..fist.."\" tries=\"0\"\/><skill skillid=\"1\" level=\""..club.."\" tries=\"0\"\/><skill skillid=\"2\" level=\""..sword.."\" tries=\"0\"\/><skill skillid=\"3\" level=\""..axe.."\" tries=\"0\"\/><skill skillid=\"4\" level=\""..dist.."\" tries=\"0\"\/><skill skillid=\"5\" level=\""..shield.."\" tries=\"0\"\/><skill skillid=\"6\" level=\""..fish.."\" tries=\"0\"\/><\/skills><spells><spell words=\"utevo lux\"\/><\/spells><deaths\/><inventory><slot slotid=\"3\"><item id=\"1994\"><inside><item id=\"2674\" count=\"1\"\/><\/inside><\/item><\/slot><slot slotid=\"4\"><item id=\"2650\"\/><\/slot><slot slotid=\"6\"><item id=\"2382\"\/><\/slot><slot slotid=\"7\"><item id=\"2649\"\/><\/slot><slot slotid=\"8\"><item id=\"2643\"\/><\/slot><\/inventory><depots><depot depotid=\"1\"><item id=\""..depoitemid.."\"><inside><item id=\"2594\"\/><\/inside><\/item><\/depot><\/depots><storage><data key=\"777\" value=\""..seksik.."\"\/><\/storage><\/player>") 
f:close() 
else 
selfSay('Blad. Wylosowany numer juz istnieje. Powiedz jeszcze raz --losowanie-- aby losowac ponownie. Nie przejmuj sie, to sie czesto zdarza.') 
end 



elseif msgcontains(msg, 'dalej') and accstatus == 8 then 
selfSay('Twoj numer to: '..myaccnumber..' Haslo do tego konta brzmi: '..mypass..' . Nie zapomnij tych passow !! Jesli nie znasz strony naszego OTSa to powiedz --linki--. To bylby juz koniec tworzenia twojego konta. Mozesz sie zalogowac i grac !!') 
accstatus = 0 
elseif msgcontains(msg, 'linki') then 
selfSay('Link do oficjalnej strony servera: [URL]http://www.dbsreborn.dbv.pl/[/URL] \n link do forum: [URL="http://www.dbsprite.mojeforum.net/"]MojeForum.Net[/URL] \n jesli zapomnijsz ktoregos z tych adresow w przyszlosci wejdz poprostu na passy 1/1 i zapytaj mnie o ---linki---') 




elseif string.find(msg, '(%a*)bye(%a*)') and getDistanceToCreature(cid) < 4 then 
selfSay('Good bye, ' .. creatureGetName(cid) .. '!') 
focus = 0 
accstatus = 0 
myname = '' 
mypass = '' 
myaccnumber = 0 
seksik = '' 
talk_start = 0 
end 
end 
end 


function onCreatureChangeOutfit(creature) 

end 


function onThink() 
if (os.clock() - talk_start) > 30 then 
if focus > 0 then 
selfSay('Nastepny prosze') 
end 
focus = 0 
end 
if focus ~= 0 then 
if getDistanceToCreature(focus) > 5 then 
selfSay('Do zobaczenia') 
focus = 0 
end 
end 
end
Please enclose any code in code (not quote) tags - nsanee
 
Last edited by a moderator:
Code:
--------------------------- Account Creator by Bazzag ------------------- ----------------------

--- little config -----------------------------------------
templex = 475
templey = 501
templez = 7
maxnamelen = 10
maxpasslen = 6
startlvl = 1
startexp = 1
vocations = 1
healthstart = 150
manastart = 20
depoitemid = 2591
promoted = 0
--------- ------------------------- skills
- goku -------
kmlvl = 1
kfist = 10
kclub = 10
ksword = 10
kaxe = 10
kdist = 10
kshield = 10
kfish = 10
kcap = 100
- Vegeta ------------
pmlvl = 1
pfist = 10
pclub = 10
psword = 10
paxe = 10
pdist = 10
pshield = 10
pfish = 10
pcap = 10
--- gohan trunk and ----
mmlvl = 1
mfist = 10
mclub = 10
msword = 10
Maxe = 10
mdist = 10
mshield = 10
mfish = 10
mcap = 10
--- end skills -------------------------------
--- end little config -----------------------------------------
focus = 0
talk_start = 0
target = 0
following = false
attacking = false
accstatus = 0
seksik = 3
myname =''
mypass =''
allow_pattern = '^ [a-zA-Z0-9 -]+$'
origmsg =''
mypasscheck =''
mynamecheck =''
vocation = 0


onThingMove function (creature, thing, oldpos, oldstackpos)

end


onCreatureAppear function (creature)

end


onCreatureDisappear function (cid, pos)
if focus == cid then
selfSay ( 'Good bye then. ")
focus = 0
talk_start = 0
end
end


onCreatureTurn function (creature)

end
msgcontains function (txt, str)
return (string.find (txt, str) and not string.find (txt, '(% w +)' .. str) and not string.find (txt, p. .. '(% w +)'))
end


onCreatureSay function (cid, type, msg)
msg = origmsg
string.lower msg = (msg)



if (msgcontains (msg, 'hi') and focus == 0) and getDistanceToCreature (cid) <4 then
selfSay ( 'Hello. I am here to help you create a new account and new character. If you want to start creating kona to tell me first whether you are man or woman. - man woman --- ---')
accstatus = 1
myname =''
mypass =''
myaccnumber = 0
focus = cid
talk_start = os.clock ()


msgcontains elseif (msg, 'hi') and (focus ~ = cid) and getDistanceToCreature (cid) <4 then
selfSay ( 'Sorry,' .. creatureGetName (cid) .. ', and talk to you in a minute. ")


elseif focus == cid then
talk_start = os.clock ()

accstatus if == 1 then
msgcontains if (msg, 'guy') then selfSay ( 'Good friend. Now give me your name. ")
seksik = 1
accstatus = 2
msgcontains elseif (msg, 'woman') then
selfSay ( 'Well my dear, now give me your name. ")
seksik = 0
accstatus = 2
end




elseif accstatus == 66 then
msgcontains if (msg, 'Goku') then
vocation = 3
selfSay ( 'goku, right?')

msgcontains elseif (msg, 'Vegeta') then
vocation = 1
selfSay ( 'vegeta, right?')

msgcontains elseif (msg, 'gohan') then
vocation = 2
selfSay ( 'gohan, right?')

msgcontains elseif (msg, 'trunk') then
vocation = 4
selfSay ( 'trunk, right?')
else
selfSay ( 'What's so mamroczesz, say it again. ")
end

accstatus = 67


elseif accstatus == 2 then
myname = origmsg
msg = mynamecheck
if string.len (mynamecheck) <= maxnamelen then
if string.find (mynamecheck, allow_pattern) then
io.open if ( "data / players /" .. myname .. ". xml", "r") == nil then
selfSay ( 'Do you want to have the name of' .. myname .. 'also')
accstatus = 3
else
selfSay ( 'That name is already booked! Enter other, I listen to')
end
else
selfSay ( 'This name contains illegal characters! Give others')
end
else
selfSay ( 'That name is too long! Max is 10 characters! Give others')
end
msgcontains elseif (msg, 'yes') then
if accstatus == 3 then
vocations if == 0 then
selfSay ( 'Okay, now give me a password to use. ")
vocation = 0
accstatus = 4
else
selfSay ( 'Well friend, now enter whether you want to be - Vegeta - or - trunk - or - gohan - or - goku -.')
accstatus = 66
end
elseif accstatus == 5 then
seksik if == 0 then
selfSay ( 'Great. Look yet again: You are a woman named' .. myname .. 'password for your account is' .. mypass ..'. Number will be selected at the end. Do you agree they were gone? ')
else
selfSay ( 'Great. Look yet again: You're a guy named' .. myname .. 'password for your account is' .. mypass ..'. Number will be selected at the end. Do you agree they were gone? ')
end
accstatus = 6
elseif accstatus == 6 then
selfSay ( 'Excellent. Can you join the lot number? - drawing - bye ---')
accstatus = 7
elseif accstatus == 67 then
selfSay ( 'Excellent. Now tell me what you want to have a password. ")
accstatus = 4
end
msgcontains elseif (msg, 'no') then
if accstatus == 3 then
selfSay ( 'Enter the other, I listen to')
accstatus = 2
elseif accstatus == 5 then
selfSay ( 'Enter the other, I listen to')
accstatus = 4
elseif accstatus == 6 then
selfSay ( 'Let's start from the beginning: You are a man or woman - man - woman -')
accstatus = 1
elseif accstatus == 67 then
selfSay ( 'Ehhh So say it again - what career you want to have? ")
accstatus = 66
end
elseif accstatus == 4 then
mypass = origmsg
msg = mypasscheck
if string.len (mypasscheck) <= maxpasslen then
if string.find (mypasscheck, allow_pattern) then
selfSay ( 'Your password will be sounded' .. mypass .. 'also')
accstatus = 5
else
selfSay ( 'The password contains illegal characters! Give others')
end
else
selfSay ( 'The password is too long! Max to 6 characters! Give others')
end

msgcontains elseif (msg, 'draw') and then accstatus == 7
manastart if == 0 then
manastartc = 1
else
manastartc = manastart
end
healthstart if == 0 then
healthstartc = 1
else
healthstartc = healthstart
end
vocations if == 0 then
mlvl = 1
fist = 10
club = 10
Sword = 10
ax = 10
dist = 10
shield = 10
fish = 10
cap = 100
else
if vocation == 1 or vocation == 2 then
mlvl = mmlvl
fist = mfist
club = mclub
sword = msword
ax = Maxe
dist = mdist
shield = mshield
fish = mfish
cap = mcap

elseif vocation == 3 then
mlvl = pmlvl
fist = pfist
club = pclub
sword = psword
ax = paxe
dist = pdist
shield = pshield
fish = pfish
cap = pcap
elseif vocation == 4 then
mlvl = kmlvl
fist = kfist
club = kclub
sword = ksword
ax = kaxe
dist = kdist
shield = kshield
fish = kfish
cap = kcap

end
end

myaccnumber = math.random (100000.999999)
io.open if ( "data / accounts /" .. .. myaccnumber. "xml", "r") == nil then
selfSay ( 'drawn the correct number of' .. myaccnumber .. 'Powedz - next -')
accstatus = 8
f = assert (io.open ( ". / data / accounts /" .. .. myaccnumber. "xml", "w"))
f = io.open ( ". / data / accounts /" .. .. myaccnumber. "xml", "w")
f: write ( '<? xml version = \ "1.0 \"> <account pass=\""..mypass.."\" type=\"1\" premDays=\"666\"> <characters> <character name=\""..myname.."\"\/> <\ / characters> <\ / account> ")
f: close ()

f = assert (io.open ( ". / data / players /" .. myname .. ". xml", "w"))
f = io.open ( ". / data / players /" .. myname .. ". xml", "w")
f: write ( '<? xml version = \ "1.0 \"> <player name = \ "" .. myname .. "\" account = \ "" .. myaccnumber .. "\" sex = \ "" seksik .. .. "\" lookdir = \ "3 \" exp = \ "" .. startexp .. "\" voc = \ "" .. vocation .. "\" level = \ "" .. startlvl. . \ "access = \" 0 \ "cap = \" ".. cap .." \ "maglevel = \" ".. mlvl .." \ "lastlogin = \" 0 \ "premticks = \" 0 \ 'promoted = \ "" promoted .. .. "\" banned = \ "0 \"> <spawn x = \ "" templex .. .. "\" y = \ "" templey .. .. "\" z = \ "" .. .. templez "\" \ /> <temple x = \ "" .. .. templex "\" y = \ "" .. .. templey "\" from = \ "". . templez .. "\" \ /> <skull type=\"0\" kills=\"0\" ticks=\"0\" absolve=\"0\"\/> <health now = \ "" healthstart .. .. "\" max = \ "" .. .. healthstartc "\" food = \ "1000 \" \ /> <mana now = \ "" .. .. manastartc "\" max = \ " ".. .. manastartc" \ "spent = \" 1 \ "\ /> <look type = \" 134 \ "= head \" 77 \ "body = \" 79 \ "legs = \" 78 \ "feet = \ "77 \" \ /> <skills> <skill skillid=\"0\" level=\""..fist.."\" tries=\"0\"\/> <skill skillid = \ " 1 \ "level = \" ".. club .." \ "tries = \" 0 \ "\ /> <skillid skill = \" 2 \ "level = \" ".. sword .." \ "tries = \"0\"\/><skill skillid=\"3\" level=\""..axe.."\" tries=\"0\"\/><skill skillid=\"4\" level = \ "" .. dist .. "\" tries = \ "0 \" \ /> <skillid skill = \ "5 \" level = \ "" shield .. .. "\" tries = \ "0 \ "\ /> <skill skillid=\"6\" level=\""..fish.."\" tries=\"0\"\/> <\ / skills> <spells> <spell words = \" utevo lux \ "\ /> <\ / spells> <deaths\/> <inventory> <slot slotid=\"3\"> <item id=\"1994\"> <inside> <item id = \" 2674 \ "count = \" 1 \ "\ /> <\ / inside> <\ / item> <\ / slot> <slot slotid=\"4\"> <item id=\"2650\"\/> < \ / slot> <slot slotid=\"6\"> <item id=\"2382\"\/> <\ / slot> <slot slotid=\"7\"> <item id = \ "2649 \" \ /> <\ / slot> <slot slotid=\"8\"> <item id=\"2643\"\/> <\ / slot> <\ / inventory> <depots> <depot depotid = \ "1 \ "> <item id=\""..depoitemid.."\"> <inside> <item id=\"2594\"\/> <\ / inside> <\ / item> <\ / depot> < \ / Depots> <storage> <data key=\"777\" value=\""..seksik.."\"\/> <\ / storage> <\ / player> ")
f: close ()
else
selfSay ( 'Error. random number already exists. Say again - drawing - to losowac again. Do not worry, it often happens. ")
end



msgcontains elseif (msg, 'next') and then accstatus == 8
selfSay ( 'Your number is:' .. .. myaccnumber 'password for this account is:' .. mypass .. '. Do not forget these passow! If you do not know part of our OTSa say - links -. That would be s over the creation of your account. You can log in and play! ')
accstatus = 0
msgcontains elseif (msg, 'links') then
selfSay ( 'Link to the official server: http://www.dbsreborn.dbv.pl/ \ n link to the forum: MojeForum.Net \ n zapomnijsz if any of these addresses in the future just go to Passy 1 / 1, and ask me --- o --- links')




elseif string.find (msg, '(% a *) bye (% a *)') and getDistanceToCreature (cid) <4 then
selfSay ( 'Good bye,' .. creatureGetName (cid) .. '!')
focus = 0
accstatus = 0
myname =''
mypass =''
myaccnumber = 0
seksik =''
talk_start = 0
end
end
end


onCreatureChangeOutfit function (creature)

end


onThink function ()
if (os.clock () - talk_start)> 30 then
if focus> 0 then
selfSay ( 'Next please')
end
focus = 0
end
if focus ~ = 0 then
getDistanceToCreature if (focus)> 5 then
selfSay ( 'see you')
focus = 0
end
end
end

rep me now =/
<< Press on
reputation.gif
 
Last edited:
Back
Top