ID:178558
 
Ok i have this as my code

var/list/donaters


client
New()
..()
var/savefile/F = new ("donaters.sav")
F["donaters"]>> donaters
if(isnull(donaters))
donaters = new /list

Del()
var/savefile/F = new ("donaters.sav")
F["donaters"]<<donaters
..()

mob/verb/Donate(N as num)
if(usr.donated==0)
usr<<"BLAHBLAH"
donaters+=usr.key
usr.donated= 1
if(usr.donated==1)
usr<<"Bah, i don't need you to donate again"

mob/var
donated = 0
mob/verb/bobdownandcheckdonaters()
for(var/X in donaters)
usr<<X

ok, it doesnt donate dimes i know that.What i want to know, it how to tell, how much a person donated from it, and it to tell the usr how much each person donated.
Please Help, i really need this, not only for donations but for other things in my game.

-NilFisk
under the verb add usr<<donaters.
In response to Kappa the Imp
No, that isn't what i meant, if you would like to knwo what i mean, if you have played the game My Life As a Spy, you would know what i mean.

-NilFisk