ID:174928
 
Is there a way to insert a proc through links? For instance

world <<"Don't forget to Donate."

I want donate to be a link towhere as they click it the donation option pops up... Can this be done and how?
client
Topic(href)
if(href == "donate")
Donate()
else
..()
proc
Donate()
//Donation thingy

mob
verb
DonationBug()
world << "Don't forget to <a href=?donate>donate</a>."
In response to Garthor
Smart you are Garthor :-) Thanks