I'm hoping to create a function where my alias will select random abilities from a table, I can get it to take the value from the table but not to cycle through the variables(only two right now for simplicity). What is it missing?
function mentalafflictions()
mental_affliction = {"limerick", "pastorale"}
send("sing "..mental_affliction[1].." at "..target.."")
end
Answers