Can somebody help me, I need to make a new script for the secret in the point lookout aviary without the quest so I can put a secret in my own world. I have a simpler version of what i am doing but i am not very satisfied with it and I would like to make it more like the one in point lookout because it is way better than mine. I am okay with scripting but I have to link so many objects together that I just don't know what I am doing wrong.
I also want to make a radio that you can drop and then click on and have a menu open up and click on either turn on radio or pick up radio
I am also making a light switch and need help with the scripting on it
scn MyModChemistrySetScript01
short Button
float timer
short destroyed
begin OnActivate
if IsActionRef player
ShowMessage GSChemistrySetMsg
endif
end
BEGIN MenuMode 1001
set Button to GetButtonPressed
if ( Button == 1 )
player.AddItem Stimpak 5
SetDestroyed 1
elseif ( Button == 2 )
player.AddItem Psycho 1
player.AddItem Buffout 1
player.AddItem Mentats 1
player.AddItem NVSteadyChem 1
player.AddItem NVReboundChem 1
SetDestroyed 1
endif
If Destroyed == 1
set timer to 3
endif
if timer == 0
set destroyed to 0
endif
END
