ID:149305
 
how do you make a tax verb. so you get 100 gold from each person except yourself.
Well, asuming each person is a /mob/person, you would do this:

mob/person/verb/tax()
for(var/mob/person/P in world-src)
P << "You have been taxed for 100 gold by [src]!"
P.gold -= 100
src.gold += 100
mob/person/var/gold = 1000

-Lord of Water