Warcraft III resources & community, 2003–2006 · archived

Advice on RPGs plz

22 posts
#17
So how exactly does this version work?
#18
Like any other Save/Load system, just implement it into your map and do whatever changes you think should be made :)

Else try to ask the author: -=Emergenzy=-
#19
a save system can save anything. you can save the exact location of the player if you want, although i wouldn't advise it.

all a save/load code system does is allow the player to input data (a save code) that the program translates into meaningful data, then output data (after encrypting it) that gives the player a save code.

the big problem is trying to figure out what exactly you want to save and load(player name, lvls, class, etc), and making an encryption system for it.
#20
Thanks Sven but why dont u suggestion exact location? Is it just because it takes more time or because errors?
#21
mainly because its going to be adding another 6-8 digits to your code, unless you are using a high compression technique, and its probably not going to be that important. if you just use inns, you can use 0-9,a-z,A-Z...that gives you 62 inns
#22
Thanks, would that make it so if you save it in the inn you could reload it in the inn?