Nop, still doesn't work -
01-24-2004, 07:04 PM
Thanks, but it still doesn't work:
I'm posting the entire script, so if you could see where i posibly went wrong, please tell me.
I've set up this script in global/radio.scr so that i can call it from any map, to call this thread from the map script, all you have to do is:
exec global/radio.scr::radio_1 ( x y z ) ( x y z ) // sure you know how to do it, but just in case, as i'm only on the BETA i haven't commented the cript yet.
[code:adc55]radio_1 local.position local.angle:
local.radio = spawn script_model "model" "miscobj/radio_civilian.tik" "targetname" "radio"
local.radio.origin = local.position
local.radio.angles = local.angle
//local.speaker = spawn script_origin "origin" local.position "targetname" "speaker"
//local.speaker glue local.radio
//$speaker playsound mb3_music
local.radio loopsound mb3_music
// spawn the trigger
local.trigger = spawn trigger_multiple targetname "trigger"
local.trigger.origin = local.position
local.trigger.angles = local.angle
local.trigger setsize ( -9 -9 -9 ) ( 9 9 9 )
local.trigger.health = 25
local.trigger takedamage
local.trigger solid
// tag the trigger to the radio
local.radio.trigger = local.trigger
// setup the explosion model
// wait till someone shots the radio
local.trigger waittill trigger
radiusdamage (local.position + (0 0 32)) 50 50
//exec global/model.scr local.position
local.speaker stoploopsound
local.radiofire = spawn script_model
local.radiofire model "models/emitters/fireandsmoke.tik"
local.radiofire.origin = local.position
local.radiofire.angles = local.angle
local.radiofire.scale = 0.2
local.radiofire notsolid
local.radiofire.targetname = "myfire1"
local.radiofire thread firehurts
end
firehurts:
self loopsound fire_med
while(1)
{
for(local.i=1;local.i <= $player.size ; local.i++)
{
if ( $player[local.i] istouching self)
{
iprintlnbold "Que te chamuscas el culo!!!"
self volumedamage 1
$player[local.i] playsound player_death
wait 1
}
}
waitframe
}
end
[/code:adc55]
The message it displays when you touch the fire is in Spanish, only tells you that you're burning your ass.
Thanks for your help, hope you have more luck in finding where i went wrong.
By the way some parts of the code are not mine, as could be the fire damage part. I have the name of the original scripter to give credit, once I've got it working.
|