mudlet-makers team mailing list archive
-
mudlet-makers team
-
Mailing list archive
-
Message #01678
Re: [Bug 827065] Re: mudlet randomly reloading with script editor open
Yes, that's another feature where changing views saves the items, so you
don't have to be clicking 'save item' all the time. It makes development
both for newbies and experienced people much more seamless. You shouldn't
rely on scripts being run once at any rate, use a variable to track whenever
it was initialized or not.
--
You received this bug notification because you are a member of Mudlet
Makers, which is subscribed to Mudlet.
https://bugs.launchpad.net/bugs/827065
Title:
mudlet randomly reloading with script editor open
Status in Mudlet the MUD client:
New
Bug description:
--[[ONLOGIN
This file contains table declarations for raising onLogin
]]
isDeclared = false
function uponLogin()
--echo("test1 ")
if (isDeclared == false) then
-- echo("test2 ")
declareMainTables()
-- echo("test3 ")
declareBalanceTables()
-- echo("test4 ")
populateBalances()
-- echo("test5 ")
declarePriorityTables()
-- echo("test6 ")
declareAffTables()
-- echo("test7 ")
populateAffLib()
-- echo("test8 ")
declareKeepDefTables()
-- echo("test9 ")
declareDefTables()
-- echo("test10 ")
populateDefLib()
-- echo("test11 ")
declareStandTables()
-- echo("test12 ")
declareTreeTables()
-- echo("test13 ")
declareClotTables()
-- echo("test14 ")
declareSipTables()
-- echo("test15 ")
declareCureFuncTables()
-- echo("test16 ")
declarePipeTables()
-- echo("test17 ")
getDoneLoginDefOrder()
-- echo("test18 ")
isDeclared = true
-- echo("test19 ")
sysEcho("onLogin", "login scripts running")
send("def")
end
-- echo("test20 ")
end
I have had the above script object reloading on me while I am working
in another window with the script editor open and a different script
object selected
version: 2.0
OS: windows vista
To manage notifications about this bug go to:
https://bugs.launchpad.net/mudlet/+bug/827065/+subscriptions
References