Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

URGENT ERROR

A topic by Pedro Cristino created Dec 31, 2023 Views: 76 Replies: 2
Viewing posts 1 to 2

When I type "take the parachute", it says "I can't see the cat", which doesn't make any sense

(3 edits)

The problem is: if you're using 1.0 version, you should not translate the IFEngine->verbs part

this

verbs: {                 
    look: `olhar`,                  
    take: `pegar`,                  
    drop: `soltar`,                  
    lookFor: `buscar`          
}

should remain:

verbs: {                  
    look: `guarda`,                  
    take: `prendi`,                  
    drop: `lascia`,                  
    lookFor: `cerca`          
}

In fact in the 1.1 version this section has been removed

Another tip: the `pattern` should all be lowercase and without accents,

Thanks!!!!!