• Mitspieler gesucht? Du willst dich locker mit der Community austauschen? Schau gerne auf unserem ComputerBase Discord vorbei!

RTCW ... komische Fehlermeldung

Sir Austin

Cadet 4th Year
Registriert
Juni 2001
Beiträge
118
Hallo,
habe gerade RTCW installiert und nach diversen Grafikeinstellungen konnte ich mit meiner KyroII Karte dann auch endlich das Intro anschauen, danach allerdings kommt die seltsame Fehlermeldung:

"G_ParseSpawnVars: Found me " when expectet {"

Kann damit irgendwer was anfangen? Bin für jede hilfe dankbar.
 
Der Debugger hat ein "me" anstatt { gefunden, entweder hast
du ne schlechte Raubkopie oder übertaktest deine Hardware
soweit das es nicht mehr ordentlich läuft.

AFAIk kann es auch nen Bug im Spiel sein in Bezug auf Kyro
Karten... such mal nach nem patch...
 
if ( !G_ParseSpawnVars() ) {
G_Error( "SpawnEntities: no entities" );
}
SP_worldspawn();
 
void G_SpawnEntitiesFromString( void ) {
char info[1024];
// allow calls to G_Spawn*()
level.spawning = qtrue;
level.numSpawnVars = 0;

// the worldspawn is not an actual entity, but it still
// has a "spawn" function to perform any global setup
// needed by a level (setting configstrings or cvars, etc)
if ( !G_ParseSpawnVars() ) {
G_Error( "SpawnEntities: no entities" );
}
SP_worldspawn();


// KnyteHawkk: exec individual map configs if CVAR is set
if (g_ExecMapConfigs.integer)
{
trap_SendConsoleCommand( EXEC_APPEND, "exec mapdefault.cfg\n");
trap_GetServerinfo(info, sizeof(info));
trap_SendConsoleCommand( EXEC_APPEND, va("exec %s.cfg\n",Info_ValueForKey( info, "mapname" )));
}

// parse ents
while( G_ParseSpawnVars() ) {
G_SpawnGEntityFromSpawnVars();
}


level.spawning = qfalse; // any future calls to G_Spawn*() will be errors
}
 
hallo unregistered,

leider kann ich mit deinen beiden posts nichts anfangen, wobei ich in dem zusammenhang gleich auf die "edit" funktion hinweisen möchte.
wenn deine posts zur lösung des problems von sir austin beitragen sollen, wäre eine nähere erläuterung angebracht!
 
Zurück
Oben