Blockland Forums > Help
Zapt And Tdm Spawn Issues
Greek2me:
The TDM script itself. It's located in Support_Gamemodes.cs.
Megaguy2:
--- Quote from: Greek2me on April 04, 2012, 11:04:05 PM ---The TDM script itself. It's located in Support_Gamemodes.cs.
--- End quote ---
--- Code: --- }
function fxDTSBrick::onPlant(%this)
{
Parent::onPlant(%this);
--- End code ---
I found it, So i just copypaste that but turn onplant into onloadplant?
Megaguy2:
Bump
Greek2me:
--- Quote from: Megaguy2 on April 05, 2012, 01:33:15 PM ---
--- Code: --- }
function fxDTSBrick::onPlant(%this)
{
Parent::onPlant(%this);
--- End code ---
I found it, So i just copypaste that but turn onplant into onloadplant?
--- End quote ---
Yes, but make sure that you include the entire function.
Megaguy2:
--- Quote from: Greek2me on April 06, 2012, 10:30:54 PM ---Yes, but make sure that you include the entire function.
--- End quote ---
so it'd look like this?
--- Code: --- }
function fxDTSBrick::onPlant(%this)
{
Parent::onPlant(%this);
}
function fxDTSBrick::onOnloadPlant(%this)
{
Parent::onloadPlant(%this);
--- End code ---