1
0
mirror of https://github.com/XLabsProject/iw4x-rawfiles.git synced 2023-08-02 15:02:11 +02:00

Merge pull request #24 from diamante0018/develop

Fixup radar
This commit is contained in:
Dss0 2022-06-30 18:55:42 +02:00 committed by GitHub
commit 54cccd5a10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,12 +8,12 @@ main()
game[ "attackers" ] = "allies";
game[ "defenders" ] = "axis";
maps\mp\_compass::setupMiniMap( "compass_map_oilrig_lvl_1" );
maps\mp\_compass::setupMiniMap( "compass_map_oilrig_lvl_2" );
maps\mp\_compass::setupMiniMap( "compass_map_oilrig_lvl_3" );
setDvar( "compassMaxRange", 4000.0 );
array_thread( getentarray( "compassTriggers", "targetname" ), ::compass_triggers_think );
thread level_think();
thread custom_kill_trigger();
@ -21,6 +21,17 @@ main()
thread killTrigger( ( 1020, 175, -80 ), 110, 250 );
}
compass_triggers_think()
{
assertEx( isDefined( self.script_noteworthy ), "compassTrigger at " + self.origin + " needs to have a script_noteworthy with the name of the minimap to use" );
while ( true )
{
self waittill( "trigger" );
maps\mp\_compass::setupMiniMap( self.script_noteworthy );
}
}
level_think()
{
/*