ID:175696
 
mob
verb
Report_Bug(txt as text)
Airjoe << "[txt]"

i want them yo be able to report a bug, and then send me what they wrote. how could i do this.
Ummmmm the way i would do it is this.

Report_Bug(mob/m in world)
var/txt = input("What is the bug?")
if(m.key == Airjoe)
m << "[txt]"
else
usr << "Thats not a GM!"

Hope that helps ya!

-Muska-
In response to Muska
<code>mob/verb/Report_Bug(bug as text) //Find Airjoe for (var/mob/M in world) if (M.key=="Airjoe") M << bug</code>

That will only work if you're logged in, though. I believe there are ways to contact you via email and such, but they never seemed to work when I tried them. (Look up SendPage() in the reference. I believe Dantom.hublib has a SendEmail() proc, but I haven't messed with it.)