Response: {
"error": "formula {
//
// ==========================================
// OBYTE STACK GAME from Whistling Frogs
// ==========================================
// Written by Crypto Girl on 21 Sep 2019
// ==========================================
// Version: 0.3 - 27 Sept 2019
// ==========================================
// Can be used with OBYTE STACK GAME BOT v0.1
// ===========================================
//
// TThe object of the game is to win the Stack.
// Users make bids. Min bid is 100,000 bytes.
// 1st bid initiates the Stack.
// Each subsequent bid starts the 5 min timer.
// If more than 5 min has passed since the previous
// bid, the (stack - commission) is shared equally
// between the last bidder and the 1st bidder.
// The new stack is initiated with the current bid.
// A commission of 10,000 bytes is charged on each bid.
//
// Setting Game parameters
//
$min_bid_amnt = 100000; // 100,000 is about £0.02 to be increaded to £0.50
$fee = 10000; // 10,000 for now to be replaced with 1% of the pot
$seed_amnt = 10000;
$commission = var['commisson'] otherwise 0;
$commission_address = 'B7KF2F5AP6BZLXOE2EGHH6BKZWVNIKWF'; //testnet
$commission_payout_threshold = 10000; // amount kept small for testing
//
// Initilising Game variables
//
$game_status = var['game_status'] otherwise 'not started';
$bid_amnt = trigger.output[[asset=base]];
$bid_status = ($bid_amnt >= $min_bid_amnt) otherwise false;
if ($bid_status == false AND trigger.initial_address != $bot_address)
bounce('Your bid is too small and will be returned to you - fees');
if (trigger.initial_address == $bot_address)
$bot_command = 'stop the game';
else
$bot_command = 'keep on playing';
} failed: booleans cannot be compared with other types"
}