
sierra117
Joined: Jan 10, 2008
If sex is good exercise, why are there fat sluts?
|
Posted: Apr 26, 2009 12:45 AM
Msg. 1 of 3
can someone tell me on how to make certain thing happen in each difficuly? like i want ot have different starting profiles in each difficulty. Is it something to do with the (game_difficulty_get_real) command? i think it is but i havnt used it ever, so i dont know on how to make stuff happen at normal. then something different at legendary, heroic, easy etc.
|

Gamma927
Joined: Jun 12, 2008
Steam: gamma927
|
Posted: Apr 26, 2009 12:58 AM
Msg. 2 of 3
(script startup difficulty_check (if (= (game_difficulty_get_real) easy) (begin (player_add_equipment (unit (list_get (players) 0)) "player_easy" true) ) ) (if (= (game_difficulty_get_real) normal) (begin (player_add_equipment (unit (list_get (players) 0)) "player_normal" true) ) ) (if (= (game_difficulty_get_real) hard) (begin (player_add_equipment (unit (list_get (players) 0)) "player_hard" true) ) ) (if (= (game_difficulty_get_real) impossible) (begin (player_add_equipment (unit (list_get (players) 0)) "player_impossible" true) ) ) )
player_easy is the name of the starting profile you give on the easy difficulty. player_normal is the one for the normal difficulty, and so on.
|

sierra117
Joined: Jan 10, 2008
If sex is good exercise, why are there fat sluts?
|
Posted: Apr 26, 2009 01:14 AM
Msg. 3 of 3
thanks! ill try that now. (man my brain has gone into mash lately.)
|