Here are some scripts i ripped from h2v with gravmind.
Link
(some of them you have to double click and open up in notepad)
Printable View
Here are some scripts i ripped from h2v with gravmind.
Link
(some of them you have to double click and open up in notepad)
Do scripts even sync in H2V? I'm pretty sure they don't but go ahead and check.
Compile a MP map with
If scripts don't sync then this is pretty pointless since H2V doesn't come with the SP tags and no one has figured out tag extraction.Code:
(global short random_short_bro 0)
(script startup "bro story cool"
(set random_short_bro (random_range 0 4) )
(if ( = random_short_bro 0)
(begin (object_create bro_0) )
)
(if ( = random_short_bro 1)
(begin (object_create bro_1) )
)
(if ( = random_short_bro 2)
(begin (object_create bro_2) )
)
(if ( = random_short_bro 3)
(begin (object_create bro_3) )
)
(if ( = random_short_bro 4)
(begin (object_create bro_4) )
)
)
Oh well~
I dont think it is possible to name bipeds/vehicles yet, so syncing scripts may not work until it is possible to name them.