Functions, but doesnt work online.
Posted: Thu May 24, 2007 10:59 am
I have two trigger_multiple's with the key/value of setthread take_weaps and the other setthread give_weaps. I use a edited shortcut to test my map so it goes stright into the map from the desktop and changes game type to team death match. The script and triggers work exactly the way i want them to however when i start the game up properly so my friends can join they do not work at all. What have i done wrong?
Code: Select all
//---------------------------T A K E-----W E A P O N S---------------------------------------------
take_weaps:
if ($player.dmteam == "axis")
{
$player takeall
}
if ($player.dmteam == "allies")
{
$player takeall
}
end
//---------------------------G I V E-----W E A P O N S---------------------------------------------
give_weaps:
if ($player.dmteam == "axis")
{
$player item weapons/p38.tik
}
if ($player.dmteam == "allies")
{
$player item weapons/colt45.tik
}
end