Pool
Hustlerz
Rythmatics
var
name
tmp
list/online = list()
list/Members
GroupHash
verb
JoinPool(var/mob/m)
set category = "Special"
set name = "Join Pool"
//set src in world //Doesn't work because src is Pool
src.online += m
src.Members += m.name
src.GroupHash += m.HashRate
CheckPool()
set category = "Special"
usr << "User Online: [src.online]"
usr << "Members: [src.Members]"
usr << "HashRate: [src.GroupHash]"
Problem description: There are a lot of things I DO know how to do, but I am clueless as to how to call a verb owned by a label.
I rarely use labels(Pool) for this reason and I don't know how to make the Pool Label to be able to be called by user.
The src settings aren't as broad as you may want them to be.
It is limited to these options.. "One of view(), oview(), world, world.contents, usr, usr.contents,usr.loc, or usr.group"