turf
ClanHouse
Entered(mob/character/M)
var/savefile/G=new("ClanHouse1.sav")
for(var/j in G.dir)
if(j==M.Clan)
M<<"Extreme!"
else
M<<"<B>This house is owned by the '[j]' clan!"
return
if(M.clanowner==1)
switch(alert("Would you like to purchase this clan house for 10,000 Zenie?\n\nNotice: If you cannot afford it; why not get other clan members to pitch in? This after all will be all your guys' house!","Purchase Clan House?","Yes","No"))
if("Yes")
if(M.Zenie<=9999)
M<<"<B>You don't have enough Zenie for this clan house!"
else
var/savefile/AA=new("ClanHouse1.sav")
AA["1"]<<M.Clan
else M<<"<I>You must be a clan owner in order to purchase this clan house."
Problem description: Basically what I am trying to do is have it so if a clanowner buys a clan house, it saves it. When you enter it, it reads the savefile to see whether or not the clan house has been boughten, and is either for sale or already owned.. But it don't work. I know I'm probabaly doing something stupid... It's been a long time. :(
RaeKwon
Lummox JR