YesNoOk
avatar

Clone mode to fights with same players (Read 2192 times)

Started by mabskmk, April 12, 2010, 05:07:02 am
Share this topic:
Clone mode to fights with same players
New #1  April 12, 2010, 05:07:02 am
  • ****
  • M.D.W.I.P.
    • Bahamas
    • www.mabskmk.webs.com
It is very common in a game of Mugen to see a fight between equal players since does not exist a better interaction of chars and the game system. The clone mode comes to make this small difference in the fight making possible one fight with a completely different oponent.

The model consists in the creation of a new way of fight and activate it in a duel “someone vs someone”. Chars that already to possess multiples ways as the case of the Yashiro by DonDrago, a fight “normal Yashiro vs normal Yashiro” the clone mode would activate the Orochi version for the machine(AI). In the case of being one fight between Orochi's the machine(AI) would have its attributes modified for the clone mode.

Requirements:
>>> Char needs already to possess an variable for AI (in the Mugen1.0 already it exists).
>>> The variable for the clone mode that goes to possess two values (0 = off, 1 = on).

Example of activation (Winmugen)
Quote
;Using the variable 59 to AI
;Using the variable 58 to clone mode

[State -2, clone]
type=Varset
trigger1=( Var(59)!=0 ) && ( P2name="Someone"||P4name="Someone" ) ; Someone = same name of char  ;P
v=58
value=1

;Var(59)!=0
;value (0 = off) (1 = on)

Example of activation (Mugen1.0)
Quote
;Using the variable 59 to clone mode

[State -2, clone]
type=Varset
trigger1= (Ailevel>0) && ( P2name="Someone"||P4name="Someone" ) ; Someone = same name of char  ;P
v=59
value=1

;Ailevel
;value (0 = human) (1,2,3,4,5,... = Cpu level)

Basically the clone mode will be activated only by the machine (Var (59)! =0 / Ailevel> 0) when fighters to possess the same name. Using triggers with the clone variable can be possible create new blows, increase your attributes, new poses of victory etc. Use your imagination for it ;)

This video shows the clone mode of the Metatridt in action, practically it make another char to fight!

http://www.youtube.com/watch?v=xNZ_jKB0lXk

thanks

Spoiler, click to toggle visibilty
Last Edit: April 12, 2010, 05:28:09 am by MabsKMK