Stop using the preprocessor.

This commit is contained in:
yenatch
2015-01-20 00:01:23 -08:00
parent d8cf44a87e
commit 8583cc4724
269 changed files with 6786 additions and 4078 deletions

View File

@@ -1,32 +1,32 @@
FruitTreeScript:: ; 44000
3callasm GetCurTreeFruit
callasm GetCurTreeFruit
loadfont
copybytetovar CurFruit
itemtotext $0, $0
2writetext FruitBearingTreeText
writetext FruitBearingTreeText
keeptextopen
3callasm TryResetFruitTrees
3callasm CheckFruitTree
callasm TryResetFruitTrees
callasm CheckFruitTree
iffalse .fruit
2writetext NothingHereText
writetext NothingHereText
closetext
2jump .end
jump .end
.fruit
2writetext HeyItsFruitText
writetext HeyItsFruitText
copybytetovar CurFruit
giveitem $ff, 1
iffalse .packisfull
keeptextopen
2writetext ObtainedFruitText
3callasm PickedFruitTree
writetext ObtainedFruitText
callasm PickedFruitTree
specialsound
itemnotify
2jump .end
jump .end
.packisfull
keeptextopen
2writetext FruitPackIsFullText
writetext FruitPackIsFullText
closetext
.end