It may have something to do with why my map won't work
Hidden/Spoiler:
ERROR[levelpack GNS.req]:Expecting bracket, but none was found.
File : munged\pc\gns_conquest.lvl.req(1)...
ucft <--
}
ERROR[levelpack GNS.req]:Expecting bracket, but none was found.
File : munged\pc\gns_conquest.lvl.req(1)...
ucft <--
}
[continuing]
2 Errors 0 Warnings
ERROR[levelpack GNS.req]:Expecting bracket, but none was found.
File : munged\pc\gns_conquest.lvl.req(1)...
ucft <--
}
ERROR[levelpack GNS.req]:Expecting bracket, but none was found.
File : munged\pc\gns_conquest.lvl.req(1)...
ucft <--
}
[continuing]
2 Errors 0 Warnings
Re: What does this mean in my MungeLog?
Posted: Wed Aug 13, 2008 7:03 pm
by bobfinkl
I had this once before it's probably something in the lua post your lua and just incase also get your req and post it.
Re: What does this mean in my MungeLog?
Posted: Wed Aug 13, 2008 7:05 pm
by adventfear
Hidden/Spoiler:
--
-- Copyright (c) 2005 Pandemic Studios, LLC. All rights reserved.
--
-- load the gametype script
ScriptCB_DoFile("ObjectiveConquest")
ScriptCB_DoFile("setup_teams")
-- REP Attacking (attacker is always #1)
REP = 1;
CIS = 2;
-- These variables do not change
ATT = REP;
DEF = CIS;
function ScriptPostLoad()
--This defines the CPs. These need to happen first
cp1 = CommandPost:New{name = "cp1"}
cp2 = CommandPost:New{name = "cp2"}
cp3 = CommandPost:New{name = "cp3"}
cp4 = CommandPost:New{name = "cp4"}
--This sets up the actual objective. This needs to happen after cp's are defined
conquest = ObjectiveConquest:New{teamATT = ATT, teamDEF = DEF,
textATT = "game.modes.con",
textDEF = "game.modes.con2",
multiplayerRules = true}
--This adds the CPs to the objective. This needs to happen after the objective is set up
conquest:AddCommandPost(cp1)
conquest:AddCommandPost(cp2)
conquest:AddCommandPost(cp3)
conquest:AddCommandPost(cp4)
conquest:Start()
SetUberMode(1);
EnableSPHeroRules()
end
---------------------------------------------------------------------------
-- FUNCTION: ScriptInit
-- PURPOSE: This function is only run once
-- INPUT:
-- OUTPUT:
-- NOTES: The name, 'ScriptInit' is a chosen convention, and each
-- mission script must contain a version of this function, as
-- it is called from C to start the mission.
---------------------------------------------------------------------------
function ScriptInit()
ReadDataFile("ingame.lvl")
SetMaxFlyHeight(70)
SetMaxPlayerFlyHeight (70)
SetMemoryPoolSize ("ClothData",20)
SetMemoryPoolSize ("Combo",50) -- should be ~ 2x number of jedi classes
SetMemoryPoolSize ("Combo::State",650) -- should be ~12x #Combo
SetMemoryPoolSize ("Combo::Transition",650) -- should be a bit bigger than #Combo::State
SetMemoryPoolSize ("Combo::Condition",650) -- should be a bit bigger than #Combo::State
SetMemoryPoolSize ("Combo::Attack",550) -- should be ~8-12x #Combo
SetMemoryPoolSize ("Combo::DamageSample",6000) -- should be ~8-12x #Combo::Attack
SetMemoryPoolSize ("Combo::Deflect",100) -- should be ~1x #combo
It means you had a munge error before and never fixed it. Then you tried to munge again without cleaning first. There is no point in attempting to play a map with a munge error. It won't work. The whole point of the munge errors are to tell you that the map isn't going to play correctly.
Do a full manual clean then munge again. If you don't know what that is, check out the FAQ topic. The new munge will show you your true error (if you still have one).
Re: What does this mean in my MungeLog?
Posted: Wed Aug 13, 2008 7:20 pm
by adventfear
The Manual Clean tut has been deleted. I can't find it anywhere.
The FAQ? No.
Search? Nada
Nothing. Can you tell me how to do a manual clean?
OnEnterRegion(
function(region, player)
if IsCharacterHuman(player) then
SetClassProperty("InsertODFnamehere", "PointsToUnlock", 0)
end
end,
"regionname"
)
I've already written out a couple of these functions for you, you should really read the scripting_system .doc and the LUA callbacks doc and try and learn how to work with these yourself. I (or everyone else) can't spoonfeed you every scripted event you'll want.
Re: What does this mean in my MungeLog?
Posted: Wed Aug 13, 2008 11:07 pm
by [RDH]Zerted
adventfear wrote:...The FAQ? No...
Thanks for the info. I added it at the end of the Question/Answer section.
Re: What does this mean in my MungeLog?
Posted: Thu Aug 14, 2008 6:03 am
by AceMastermind
adventfear wrote:The Manual Clean tut has been deleted. I can't find it anywhere.
The FAQ? No.
Search? Nada
Nothing. Can you tell me how to do a manual clean?
At the time you posted, the Manual Clean sticky was directly above this topic.
*Further proof that stickies are generally ignored*