falken80 posted on Apr 4 2004 at 09:58 PM said:
could you limit the number of characters choice on the screen characters choice ?
because when it's too big it's out of memory.
limit the characters memory please ^^
thanks
great great work !!!
To limit "manually" the limit of player char you must edit the Models.txt (unpack Bor.PACK) that is in Data folder.
Look for these in models.txt (EXAMPLE):
# List all character models to be loaded.
# Syntax:
# load [name] [path] // Load on startup
# know [name] [path] // Load when needed
#
# Required objects. These must always be loaded.
load Flash data/chars/misc/flash.txt
load Shot data/chars/misc/shot.txt
# Players must also be loaded.
load Kgetsura data/chars/Kgetsura/Kgetsura.txt
load LEE data/chars/LEE/LEE.txt
LOAD EQUAKE data/chars/EQUAKE/EQUAKE.txt
LOAD FALCON data/chars/FALCON/FALCON.txt
-----------------------
The load comand showed here designs the amount of player characters to be loaded in the game (in this example load 4 player characters: kgetsura, Lee, Equake & Falcon)
If you want only 3 players character you only have to delete one of these lines, for example delete LOAD FALCON data/chars/FALCON/FALCON.txt
Byes