Well here it is, a small lua project that i got kinda serious about. More stuff in the near future
9 lines
245 B
Lua
9 lines
245 B
Lua
-- plugin.init("superPlugin")
|
|
plugin.OnLoaded(function()
|
|
print(PLUGIN_NAME.." has been loaded!")
|
|
local epic = plugin.getPluginRef("PluginEpic")
|
|
epic.newPerson("Ryan",22,"male")
|
|
print(epic.getName())
|
|
local list = plugin.getPluginList()
|
|
end)
|