Posts
13
Respect
Forum Rank
Legless Crawler
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!function location_display_text()
{
hint_hud = NewClientHudElem(self);
hint_hud.fontScale = 2;
hint_hud.alignX = "left";
hint_hud.alignY = "top";
hint_hud.horzAlign = "left";
hint_hud.vertAlign = "top";
hint_hud.x = 2;
hint_hud.y = 2;
text = undefined;
while(1)
{
text = self get_location_text();
hint_hud SetText( text );
wait .1;
}
}
function get_location_text()
{
text = undefined;
zone_name = undefined;
location_text_zones = getentarray("location_text_zones","targetname");
for( z=0; z<location_text_zones.size; z++ )
{
if (self IsTouching(location_text_zones[z]) )
zone_name = location_text_zones[z].script_noteworthy;
}
switch( zone_name )
{
case "start_zone":
text = "Communications Office";
break;
//case "power":
//text = "Power Room";
//break;
default:
text = "Zone Not Recognized";
break;
}
return text;
}