ID:145690
 
Code:
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

You're making a bad assumption in Entered() here: that M is the type you said it is. M can be any /atom/movable. You must check its type before using its vars, unless the var you're using belongs to all movable atoms.

Lummox JR
In response to Lummox JR
Lummox JR wrote:
You're making a bad assumption in Entered() here: that M is the type you said it is. M can be any /atom/movable. You must check its type before using its vars, unless the var you're using belongs to all movable atoms.

Lummox JR

Thanks. :) Nice to see you still are here, Lummox JR, and helping. :)


RaeKwon