Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I was just wondering, is it possible to give yourself more than 1 item in the console commands? for example, GAME.ship.LoadWare("ITMArtifacts") will only give me 1 alien artifact, but is someting like GAME.ship.LoadWare("ITMArtifacts") X23, possible? give myself 23 alien = artifacts.

Thank you for the game. 

Like usual in python:

for _ in range(20): GAME.ship.loadWare("ITMArtifacts")

(1 edit)

Thank you.
EDIT: ChatGPT helped me figure it out.