Im looking for a pretty simple map action script that would delete a monster of timid difficulty when playing a higher difficulty.
I assume it would go something like: Check difficulty chosen, If difficulty is greater than X delete these monsters (list of monsters).
Or a script that would choose one of these certain monsters to appear via the difficulty rating.
Its for a multiplayer mapset and I want the unit that's available per team based on the difficulty setting.
Need a Map action script
If you want each difficulty to a different set of units... For example for Timid you want unit A, but for Simple you want unit B so that each difficulty has a unique set of units this script would do the trick:
TUNI. Timid?
Difficulty Equal To
[0]
Activates on Success
[the CTRL for Timid]
Activates on Failure
[Simple?]
TUNI. Simple?
Difficulty Equal To
[1]
Activates on Success
[the CTRL for Simple]
Activates on Failure
[Normal?]
Do that for each difficulty and make the CTRLs for each difficulty and link them to the Activates on Success parameters. The CTRL will make the units you want for that difficulty to become visible.
TUNI. Timid?
Difficulty Equal To
[0]
Activates on Success
[the CTRL for Timid]
Activates on Failure
[Simple?]
TUNI. Simple?
Difficulty Equal To
[1]
Activates on Success
[the CTRL for Simple]
Activates on Failure
[Normal?]
Do that for each difficulty and make the CTRLs for each difficulty and link them to the Activates on Success parameters. The CTRL will make the units you want for that difficulty to become visible.