diff --git a/changelog b/changelog index 4aebd2c..0799fd4 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,8 @@ +Version 1.4.2 by ~jan6, 2020 + +added a terminal bell on the start of each turn, to notify players + + Version 1.4.1 by ~jan6, 2020 restored original stats, diff --git a/common.h.modded b/common.h.modded index e888e65..72f5ed0 100644 --- a/common.h.modded +++ b/common.h.modded @@ -19,17 +19,17 @@ #define STAR '*' /* star character */ #define BLACKHOLE '@' /* black hole character */ -#define END_PERCENT 55 /* end when this much of the map is full */ -#define INIT_CASH 6000 /* initial player cash */ -#define SPLIT_PRICE 3000 /* when stocks split 2-1 */ +#define END_PERCENT 45 /* end when this much of the map is full */ +#define INIT_CASH 600 /* initial player cash */ +#define SPLIT_PRICE 300 /* when stocks split 2-1 */ #define NUMCO 5 /* number of companies (don't change) */ -#define INIT_CO_COST 90 /* initial company start cost */ -#define FOUNDER_BONUS 10 /* founder gets this much stock */ +#define INIT_CO_COST 9 /* initial company start cost */ +#define FOUNDER_BONUS 5 /* founder gets this much stock */ #define NUMMOVES 6 /* number of moves options a player gets */ #define MAXPLAYERS 4 /* total number of players a game can have */ -#define STARCOST 251 /* company's price increase near star */ -#define BLACKHOLECOST -250 /* price increase near black hole */ -#define NEWCOCOST 101 /* company's price increase near new co */ +#define STARCOST 26 /* company's price increase near star */ +#define BLACKHOLECOST -25 /* price increase near black hole */ +#define NEWCOCOST 10 /* company's price increase near new co */ #define Mx 12 /* x dimension of map */ diff --git a/starlanes.c b/starlanes.c index 300299a..6157c35 100644 --- a/starlanes.c +++ b/starlanes.c @@ -251,6 +251,7 @@ int main(int argc, char *argv[]) //ai_buy_sell(pl,co,turn,map,Difficulty); //} turn = (++turn)%numplayers; + fprintf(stderr,"\x07"); } } while (!done);