Author Topic: Zapt And Tdm Spawn Issues  (Read 1296 times)

http://localhostr.com/download/NSTGeDZ/Script_TDMPatch.zip
Here it is! Doesnt work for zapt thought, but would be pretty simple to adapt, right?

Oh wait, you'll have to open the script and put a new line at the end of his name.

Nevermind, It turns out that the script doesnt loving work at all!

in the script somewhere there should be an onplant function. just copy that but make it onloadplant so you have both onplant and onloadplant. old broken mods shouldn't be allowed to remain available. long unsolved problems like this, which get heard about a lot, are exactly why

in the script somewhere there should be an onplant function. just copy that but make it onloadplant so you have both onplant and onloadplant. old broken mods shouldn't be allowed to remain available. long unsolved problems like this, which get heard about a lot, are exactly why

The scipt for tdm? or, that "FIX" script?

The TDM script itself. It's located in Support_Gamemodes.cs.

The TDM script itself. It's located in Support_Gamemodes.cs.
Code: [Select]
}
function fxDTSBrick::onPlant(%this)
{
Parent::onPlant(%this);
I found it, So i just copypaste that but turn onplant into onloadplant?


Code: [Select]
}
function fxDTSBrick::onPlant(%this)
{
Parent::onPlant(%this);
I found it, So i just copypaste that but turn onplant into onloadplant?
Yes, but make sure that you include the entire function.

Yes, but make sure that you include the entire function.
so it'd look like this?
Code: [Select]
}
function fxDTSBrick::onPlant(%this)
{
Parent::onPlant(%this);
                        }
function fxDTSBrick::onOnloadPlant(%this)
{
Parent::onloadPlant(%this);

Nope. Do you see the { under function fxDTSBrick::onPlant(%this) ? Scroll down until you find the next } that is lined up under it, then copy everything between and including those.

Nope. Do you see the { under function fxDTSBrick::onPlant(%this) ? Scroll down until you find the next } that is lined up under it, then copy everything between and including those.
You lost me. I'm handicapped.

Download this file and place it inside your Gamemode_TeamDeathMatch.zip.

Download this file and place it inside your Gamemode_TeamDeathMatch.zip.

Thank you.

Does that effect flag spawns too? Capture the flag makes me remake the flags too.