Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Prisonerwithajob

1
Posts
A member registered Dec 22, 2017

Recent community posts

outside.gd

win32/64

,green, ; appears incorrectly formatted and breaks bandage application, item is consumed; removed color call and script appears to work as intended.  Great little game btw!

if item.code == 'bandage':
if slave.effects.has('bandaged') == false:
get_parent().infotext(slave.dictionary("Bandage used on $name."))
slave.health += slave.stats.health_max/2.5
slave.add_effect(globals.effectdict.bandaged)
else:
get_parent().infotext(slave.dictionary("Bandage used on $name with reduced efficiency."))
slave.health += slave.stats.health_max/5