Author Topic: (no subject)  (Read 1756 times)

Anonymous

  • Member
  • *
  • Posts: 545
    • View Profile
(no subject)
« on: August 22, 2003, 11:31:48 AM »
Hey when ever i try to make an inn, the person will always say i dont have enough money, the thing is i do, if any one can give me a simple inn program with a fade type 4 it would be appriciated
« Last Edit: December 31, 1969, 06:00:00 PM by Anonymous »

Dont_Think_So

  • Member
  • *
  • Posts: 76
    • View Profile
(no subject)
« Reply #1 on: August 22, 2003, 02:55:09 PM »
Code: [Select]
#mwin("Would you like to stay at the Inn for 40 gold?")
#mwin("1 == Yes")
#mwin("2 == No")
#done!=0
#while(done!==0)
{
#wait(innchoose$)
#if(innchoose$=="2")
{
#mwin("Come again!")
#wait()
#mwincls()
#done!=1
}
#if(innchoose$=="1")
{
#getgp(gp!)
#if(gp!<40)
{
#mwin("That's not enough money!")
#wait()
#mwincls()
#done!=1
}
#if(gp!>=40)
{
#takegp(40)
#mwincls()
#savescreen
#fade(4)
#inn
#delay(5)
#restorescreen()
#done!=1
}
}
}
« Last Edit: December 31, 1969, 06:00:00 PM by Dont_Think_So »

Cuzit

  • Member
  • *
  • Posts: 487
    • View Profile
(no subject)
« Reply #2 on: August 22, 2003, 08:42:20 PM »
I like, but you know thare's lots of things at the shack you can download and tinker with. If I can't figure something out, I refer to the shack and tinker with something, and then I rewrite it (following the basics that I downloaded) to my needs. Course I can't do that with DW....
« Last Edit: December 31, 1969, 06:00:00 PM by Cuzit »