24 lines
741 B
Python
24 lines
741 B
Python
|
from core.main import *
|
||
|
from utils.loaders.single_loader import loadSingle
|
||
|
|
||
|
class Loadmod:
|
||
|
def __init__(self, register):
|
||
|
register("loadmod", self.loadmod)
|
||
|
|
||
|
def loadmod(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
||
|
if authed:
|
||
|
if length == 2:
|
||
|
rtrn = loadSingle(spl[1], register)
|
||
|
if rtrn == True:
|
||
|
success("Loaded module %s" % spl[1])
|
||
|
return
|
||
|
else:
|
||
|
failure("Error loading module %s: %s" % (spl[1], rtrn))
|
||
|
return
|
||
|
else:
|
||
|
incUsage("loadmod")
|
||
|
return
|
||
|
else:
|
||
|
incUsage(None)
|
||
|
return
|