white glow

4 replies
13 years, 9 months ago
#6931

Hi there. I have a question – is there any way to delete that white glow on the weapons and quest objects ?

13 years, 8 months ago
#12195

That’s a good question. Weapons don’t have that glow, if you already have one. So I guess it might be achievable.

13 years, 8 months ago
#12196

command objects glow

 

add light

game.highlighting:AddHighlighting(game.entitywrapper:GetEntityByName(“the name of the object”))

 

remove the light

game.highlighting:RemoveHighlighting(game.entitywrapper:GetEntityByName(“the name of the object”))

 

for example, the front door to the office of Bruno

game.highlighting:AddHighlighting(game.entitywrapper:GetEntityByName(“C_Door”))

 

the name of the object you can see here

http]

13 years, 8 months ago
#12249

Do I have to put all items on the list or there is any single line for all objects?

13 years, 8 months ago
#12259

Do I have to put all items on the list or there is any single line for all objects?

for each object separately to define the command

 

for example

the front door to the office of Bruno

game.highlighting:AddHighlighting(game.entitywrapper:GetEntityByName(“C_Door”)) – add light

game.entitywrapper:GetEntityByName(“C_Door”):EnableAction() – to open the door

 

the door to the jewelry

game.highlighting:AddHighlighting(game.entitywrapper:GetEntityByName(“5MA_jewellery00”)) – add light

game.entitywrapper:GetEntityByName(“5MA_jewellery00”):EnableAction() – to open the door

 

 

and activate the script is just next to the object

  • You must be logged in to reply to this topic.