Opreturn player data

This commit is contained in:
jl777
2019-02-06 02:25:28 -11:00
parent fde8e549a3
commit 6c1d59e8a2
5 changed files with 40 additions and 19 deletions

View File

@@ -321,7 +321,7 @@ struct rogue_packitem
struct rogue_player
{
int32_t gold,hitpoints,strength,level,experience,packsize;
int32_t gold,hitpoints,strength,level,experience,packsize,dungeonlevel,pad;
struct rogue_packitem roguepack[MAXPACK];
};
@@ -330,9 +330,10 @@ struct rogue_state
uint64_t seed;
char *keystrokes;
uint32_t needflush,replaydone;
int32_t numkeys,ind,num,guiflag,counter,sleeptime;
int32_t numkeys,ind,num,guiflag,counter,sleeptime,playersize;
struct rogue_player P;
char buffered[8192];
uint8_t playerdata[10000];
};
extern struct rogue_state globalR;