
How do i......
-
- Posts: 284
- Joined: Fri Jul 21, 2006 5:43 pm
- Location: I dont know. 0.o
How do i......
Hey guys, im new to modding. I was wondering how you can read the game scripts of halo2. like what programs i need, if i need a modchip installed....ect. thanks! 

Striderdude says: The spam! It burns!! IT BURNS!!
-
- Posts: 101
- Joined: Sun May 28, 2006 9:40 pm
-
- Posts: 284
- Joined: Fri Jul 21, 2006 5:43 pm
- Location: I dont know. 0.o
i meant like this. this is in campaign. finding the halo 2 Megg. (easter egg)
(script dormant megg_check
(begin
(if(not(difficulty_legendary))
(sleep_forever))
(if(game_is_cooperative)
(sleep_forever))
(if(not(ice_cream_flavor_available 3))
(sleep_forever))
(sleep_until(if(<(object_get_shield(player0)) 1)
(begin
(begin
(print oops)
(sleep_forever) False
)
)(if mark_flavor_gun
(begin
(begin
(set mark_flavor_megg True) True
)
) False)) 1)
))
(script dormant megg_check
(begin
(if(not(difficulty_legendary))
(sleep_forever))
(if(game_is_cooperative)
(sleep_forever))
(if(not(ice_cream_flavor_available 3))
(sleep_forever))
(sleep_until(if(<(object_get_shield(player0)) 1)
(begin
(begin
(print oops)
(sleep_forever) False
)
)(if mark_flavor_gun
(begin
(begin
(set mark_flavor_megg True) True
)
) False)) 1)
))
Striderdude says: The spam! It burns!! IT BURNS!!
-
- Posts: 101
- Joined: Sun May 28, 2006 9:40 pm
-
- Posts: 284
- Joined: Fri Jul 21, 2006 5:43 pm
- Location: I dont know. 0.o
-
- Posts: 101
- Joined: Sun May 28, 2006 9:40 pm
It's good to know a little code (I know some, but I also know some of the requirements.)
(script dormant megg_check
this sets the script megg_check to ready for the requirements.
(begin
it begins
(if(not(difficulty_legendary))
(sleep_forever))
if the difficulty is not legendary, it's not gonna happen
(if(game_is_cooperative)
(sleep_forever))
exact same
(if(not(ice_cream_flavor_available 3))
(sleep_forever))
this refers to the thunder skull (this I took from another source; however, I believe that in the .xbe ice cream flavor is mentioned)
(sleep_until(if(<(object_get_shield(player0)) 1)
stay dormant until if the player gets their sheild back is not true, i.e. if they never lose their sheild and regain it back
(begin
(begin
(print oops)
I believe this will print oops on your screen, like where the names for the new parts of levels are
(sleep_forever) False
)
not starting is false, so it will start
)(if mark_flavor_gun
(begin
(begin
no Idea
(set mark_flavor_megg True) True
)
) False)) 1)
))
the first part is about starting the megg egg... the rest, i don't know.
(script dormant megg_check
this sets the script megg_check to ready for the requirements.
(begin
it begins
(if(not(difficulty_legendary))
(sleep_forever))
if the difficulty is not legendary, it's not gonna happen
(if(game_is_cooperative)
(sleep_forever))
exact same
(if(not(ice_cream_flavor_available 3))
(sleep_forever))
this refers to the thunder skull (this I took from another source; however, I believe that in the .xbe ice cream flavor is mentioned)
(sleep_until(if(<(object_get_shield(player0)) 1)
stay dormant until if the player gets their sheild back is not true, i.e. if they never lose their sheild and regain it back
(begin
(begin
(print oops)
I believe this will print oops on your screen, like where the names for the new parts of levels are
(sleep_forever) False
)
not starting is false, so it will start
)(if mark_flavor_gun
(begin
(begin
no Idea
(set mark_flavor_megg True) True
)
) False)) 1)
))
the first part is about starting the megg egg... the rest, i don't know.
-
- Posts: 284
- Joined: Fri Jul 21, 2006 5:43 pm
- Location: I dont know. 0.o
-
- Posts: 115
- Joined: Thu Apr 06, 2006 12:32 pm
- Location: Canadia.
lols
I'm pretty sure this is what you're looking for:
http://www.haloplugins.com/forums/index ... 1637&st=0&
I haven't even downloaded it, so I wouldn't know for SURE, but it really looks like it in the screenshots, so... :P
http://www.haloplugins.com/forums/index ... 1637&st=0&
I haven't even downloaded it, so I wouldn't know for SURE, but it really looks like it in the screenshots, so... :P

-
- Posts: 284
- Joined: Fri Jul 21, 2006 5:43 pm
- Location: I dont know. 0.o
Re: lols
THANK YOU!SyrinEldarin wrote:I'm pretty sure this is what you're looking for:
http://www.haloplugins.com/forums/index ... 1637&st=0&
I haven't even downloaded it, so I wouldn't know for SURE, but it really looks like it in the screenshots, so...
Striderdude says: The spam! It burns!! IT BURNS!!