Example #1
0
def onLoad():
    if enabled and backup_path:
        if accountsdriver == 'mysql' or worlddriver == 'mysql':
            wolfpack.addtimer(time, timer, [wolfpack.time.currenttime()])
            wolfpack.registercommand("backupdb", cmdbackupdb)
            return True
    else:
        return False
def onLoad():
	if enabled and backup_path:
		if accountsdriver == 'mysql' or worlddriver == 'mysql':
			wolfpack.addtimer( time, timer, [ wolfpack.time.currenttime() ] )
			wolfpack.registercommand( "backupdb", cmdbackupdb )
			return True
	else:
		return False
Example #3
0
def onLoad():
	global pages
	pages = Pages()	
	wolfpack.registerglobal(EVENT_HELP, "system.pages")
	wolfpack.registercommand("page", page)
	
	if not wolfpack.isstarting():
		pages.load()
Example #4
0
def onLoad():
    global pages
    global page
    pages = Pages()
    wolfpack.registerglobal(EVENT_HELP, "system.pages")
    wolfpack.registercommand("page", page)

    if not wolfpack.isstarting():
        pages.load()
Example #5
0
def onLoad():
	wolfpack.registercommand( "cast", CmdCast )
Example #6
0
def onLoad():
    wolfpack.registercommand('shrink', shrink)
Example #7
0
def onLoad():
	wolfpack.registercommand('find', find)
Example #8
0
def onLoad():
	wolfpack.registercommand( "testlos", testlos )
	return
Example #9
0
def onLoad():
    wolfpack.registercommand("action", action)
Example #10
0
def onLoad():
	wolfpack.registercommand('allshow', allshow)
Example #11
0
def onLoad():
	wolfpack.registercommand( "removedupes", commandRemoveDupes )
	return
def onLoad():
	wolfpack.registercommand('skillinfo', edit)
Example #13
0
def onLoad():
    wolfpack.registercommand('account', commandAccount)
    return
Example #14
0
def onLoad():
    wolfpack.registercommand("wipe", nuke)
    wolfpack.registercommand("nuke", nuke)
    wolfpack.registercommand("nukez", nukez)
    return
Example #15
0
def onLoad():
	wolfpack.registercommand("linkdoors", commandLinkDoors)
	wolfpack.registercommand("unlinkdoors", commandUnlinkDoors)
Example #16
0
def onLoad():
	wolfpack.registercommand( 'invul', invul )
	return
Example #17
0
def onLoad():
	wolfpack.registercommand('playmusic', playmusic)
Example #18
0
def onLoad():
    wolfpack.registercommand('spawn', spawn)
    return
Example #19
0
def onLoad():
	wolfpack.registercommand( 'fix', commandFix )
	wolfpack.registercommand( 'resend', commandFix )
	return
Example #20
0
def onLoad():
    wolfpack.registercommand('add', add)
    wolfpack.registercommand('static', static)
Example #21
0
def onLoad():
    wolfpack.registercommand("guilds", commandGuilds)
Example #22
0
def onLoad():
    wolfpack.registercommand("disconnect", disconnect)
Example #23
0
def onLoad():
	wolfpack.registercommand('hearall', hearall)
Example #24
0
def onLoad():
	wolfpack.registercommand('boom', boom)
Example #25
0
def onLoad():
    wolfpack.registercommand("hideskilltitle", hideskilltitle)
Example #26
0
def onLoad():
    wolfpack.registercommand("removemulti", commandRemovemulti)
    return
def onLoad():
	wolfpack.registercommand('addpv',addplayervendor)
Example #28
0
def onLoad():
	wolfpack.registercommand('follow', follow)
	return
Example #29
0
def onLoad():
    wolfpack.registercommand('email', commandEmail)
    return
Example #30
0
def onLoad():
	wolfpack.registercommand('shrink', shrink)
Example #31
0
def onLoad():
    wolfpack.registercommand("dupe", dupe)
Example #32
0
def onLoad():
    wolfpack.registercommand('eval', evalcommand)
Example #33
0
def onLoad():
	wolfpack.registercommand( "who", cmdWho )
	return
def onLoad():
    wolfpack.registercommand("notices", snotices)
    #wolfpack.registerglobal( EVENT_LOGIN, "commands.server_notices" )
    return
Example #35
0
def onLoad():
	wolfpack.registercommand("tile", commandTile)
Example #36
0
def onLoad():
	wolfpack.registercommand( "tele", commandTele )
	wolfpack.registercommand( "telem", commandTeleM )
	return
Example #37
0
def onLoad():
	wolfpack.registercommand('add', add)
	wolfpack.registercommand('static', static)
def onLoad():
	wolfpack.registercommand( "backupworld", backupCmd )
	return True
Example #39
0
def onLoad():
    wolfpack.registercommand('password', commandPassword)
    return
Example #40
0
def onLoad():
	wolfpack.registercommand( "import", import_command )
Example #41
0
def onLoad():
	wolfpack.registercommand( "remove", commandRemove )
Example #42
0
def onLoad():
    wolfpack.registercommand("tilecolor", commandTilecolor)
    wolfpack.registercommand("tilecolorz", commandTilecolorz)
    return
Example #43
0
def onLoad():
    wolfpack.registercommand("sysmessage", sysmessage)
def onLoad():
	wolfpack.registercommand( "disconnect", disconnect )
Example #45
0
def onLoad():
	wolfpack.registercommand( "turnitem", turnitem )
	return
Example #46
0
def onLoad():
  wolfpack.registercommand("guilds", commandGuilds)
Example #47
0
def onLoad():
	wolfpack.registercommand("test", test)
	wolfpack.registercommand("resendtooltip", resendtooltip)
	wolfpack.registercommand("season", season)
	wolfpack.registercommand("updateplayer", updateplayer)
	wolfpack.registercommand("time", uotime)
	wolfpack.registercommand("nudgeup", nudgeup)
	wolfpack.registercommand("nudgedown", nudgedown)
	wolfpack.registercommand("nightsight", nightsight)
	wolfpack.registercommand("multigems", multigems)
	wolfpack.registercommand("followers", followers)
	wolfpack.registercommand("gouid", gouid)
	wolfpack.registercommand("goname", goname)
	wolfpack.registercommand("newlos", newlos)
Example #48
0
def onLoad():
	wolfpack.registercommand( "wipe", nuke )
	wolfpack.registercommand( "nuke", nuke )
	wolfpack.registercommand( "nukez", nukez )
	return
Example #49
0
def onLoad():
    wolfpack.registercommand('edit', edit)
Example #50
0
def onLoad():
	wolfpack.registercommand( "stat", stat )
	return
Example #51
0
def onLoad():
    wolfpack.registercommand("restore", restore)
    wolfpack.registercommand("heal", heal)
Example #52
0
def onLoad():
	wolfpack.registercommand( "export", exportcmd )
Example #53
0
def onLoad():
	wolfpack.registercommand( "kick", commandKick )
	wolfpack.registercommand( "ban", commandBan )
	wolfpack.registercommand( "unban", commandUnban )
Example #54
0
def onLoad():
	wolfpack.registercommand("lock", commandLock)
Example #55
0
def onLoad():
	wolfpack.registercommand( "travel", travel )
def onLoad():
	wolfpack.registercommand( "decoration", decoration )
Example #57
0
def onLoad():
	wolfpack.registercommand( 'fix', commandFix )
	wolfpack.registercommand( 'resend', commandFix )
	return