 |
 |
GoldenEye 007 Nintendo 64 Community, GoldenEye X, Nintendo 64 Games Discussion GoldenEye Cheats, GoldenEye X Codes, Tips, Help, Nintendo 64 Gaming Community
|
 |
 |
 |
 |
|
 |
 |
 |
 |
 |
jim102 Agent


Joined: 27 Nov 2010 Posts: 107 Location: Quebec City  |
Posted: Sat Dec 04, 2010 7:38 pm Post subject: What`s wrong with my test,help action block |
 |
|
Hi, it`s me again. I`m gonna tell you I added two characters only in the bunker 2 level. Those do not do their actions. Check syntax said it was ok.
For the text, I modified bunker 2 text and I saved and I can Import it.
When Bond goes see the janus guard in black, this last has to say: Sorry, boss you cannot pass.
When Bon kills him, guard suppose to respawn.
But He stays standed up with saying anything
Here is his action block 0401:
BE00000000000000000000 Respawn Guard with ID (000000000000000000)
68000000 Check Door Status, Return Value Loop If Met (Brown Corrugated Electronic Door)
0200 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
0100 Go To Beginning, Then Return Value Loop
0201 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
C30825 Display Text Preset - Guard: Sorry boss,but you cannot pass
0100 Go To Beginning, Then Return Value Loop
04 terminator
-------------------------------------------------------------------------------------
Boris the last one. He is supposed to disappear at first and go sound the alarm on the wall after that. Instead of doing that, he does random moves until detection.
His action block 0402:
0200 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
22 Guard Set To Move Fades And Disappear
0100 Go To Beginning, Then Return Value Loop
0202 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
25 Sound Alarm
0100 Go To Beginning, Then Return Value Loop
0203 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
0100 Go To Beginning, Then Return Value Loop
04 terminator
Could you help me to get it work? It will be my christmas gift LOL
I checked their own action block in right clicking on them.
I will never give up! Even though I am beginner!
Thank you very much to take the time to fix that beginner problem!
You would be nice to answer.  |
|
|
|
|
|
 |
 |
 |
 |
 |
Dragonsbrethren Hacker


Joined: 23 Mar 2007 Posts: 3058
 |
Posted: Sat Dec 04, 2010 8:23 pm Post subject: |
 |
|
Your loops need a little work:
Code: | 68000000 Check Door Status, Return Value Loop If Met (Brown Corrugated Electronic Door)
0200 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
0100 Go To Beginning, Then Return Value Loop |
Move the 68 action below the 02 action. As it is now the door status is only being checked once since it's outside of the 0200 loop, which just keeps looping forever.
Code: | 0201 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
C30825 Display Text Preset - Guard: Sorry boss,but you cannot pass
0100 Go To Beginning, Then Return Value Loop |
Here you want to move the C3 action above 0201 and change 0100 to 0101, otherwise the message will keep getting displayed until you finish the mission.
Code: | 0200 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
22 Guard Set To Move Fades And Disappear
0100 Go To Beginning, Then Return Value Loop
0202 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
25 Sound Alarm
0100 Go To Beginning, Then Return Value Loop
0203 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
0100 Go To Beginning, Then Return Value Loop
04 terminator |
This one needs some conditions to get to the 25 sound alarm action. Again, your 01 actions don't correspond to their 02 actions. They should be using the same value; 02 basically numbers a loop. 01 goes to the first loop with its number. You don't always have to have them match up, but usually you do. |
|
|
|
|
|
 |
 |
 |
 |
 |
jim102 Agent


Joined: 27 Nov 2010 Posts: 107 Location: Quebec City  |
Posted: Sat Dec 04, 2010 8:45 pm Post subject: |
 |
|
So it would be:
0200 Resume If Return Value Loop Met
68000000 Check Door Status, Return Value Loop If Met (Brown Corrugated Electronic Door)
03 Leave The Routine, But When Return Continue From Spot
0100 Go To Beginning, Then Return Value Loop
0201 Resume If Return Value Loop Met
C30825 Display Text Preset - Guard: Sorry boss,but you cannot pass
03 Leave The Routine, But When Return Continue From Spot
0101 Go To Beginning, Then Return Value Loop
-------------------------------------------------------------------------------------
(So, actions go after 0200)
0200 Resume If Return Value Loop Met
22 Guard Set To Move Fades And Disappear
03 Leave The Routine, But When Return Continue From Spot
0100 Go To Beginning, Then Return Value Loop
0202 Resume If Return Value Loop Met
25 Sound Alarm
03 Leave The Routine, But When Return Continue From Spot
0101 Go To Beginning, Then Return Value Loop
0203 Resume If Return Value Loop Met
03 Leave The Routine, But When Return Continue From Spot
0102 Go To Beginning, Then Return Value Loop
That last loop I should remove it or if I use it, I would correct 0203 by 0002 for 102 at the end after. Correct me guys if I am not right but I will try that using the GE. |
|
|
|
|
|
 |
 |
 |
 |
 |
|
 |
 |
 |
 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
 |