YesNoOk

Show content

This section allows you to browse the content for this member. Note that you can only see content for which you have sufficient viewing permissions.

**
yaminogun is Offline
Contact yaminogun:

yaminogun

User

Messages by yaminogun

    

Re: how can you change a characters mugen version to 1.0

 August 16, 2014, 10:11:38 am View in topic context
 Posted by yaminogun  in how can you change a characters mugen version to 1.0 (Started by LightningZERO August 16, 2014, 02:43:51 am
 Board: M.U.G.E.N Configuration Help

if error(crash) when try to play your winmugen char in mugen 1.0 try:

remove  mugenversion not just value but key also,
if still error, you must dig to the code which cause error and remove it or replace the code with method which worked for newer mugen
    

Re: Enscripture's stages

 August 14, 2014, 12:37:17 pm View in topic context
 Posted by yaminogun  in Enscripture's stages [SOLVED + Download link] (Started by Mugetsu-x August 14, 2014, 11:58:39 am
 Board: Requests

    

Re: Does this thing exist?/who is the author?/etc. thread.

 August 13, 2014, 12:27:29 pm View in topic context
 Posted by yaminogun  in Does this thing exist?/who is the author?/etc. thread.  (Started by Messatsu August 26, 2007, 08:29:40 pm
 Board: Requests

    

Re: KOF Mario? Does it still exist?

 August 13, 2014, 09:48:24 am View in topic context
 Posted by yaminogun  in KOF Mario? Does it still exist? (Started by LightningZERO August 13, 2014, 09:27:53 am
 Board: Requests

    

Re: easy way to add scalable AI for existing non scalable AI in mugen 1.0

 August 08, 2014, 06:56:48 pm View in topic context
 Posted by yaminogun  in easy way to add scalable AI for existing non scalable AI in mugen 1.0 (Started by yaminogun August 08, 2014, 01:14:39 pm
 Board: M.U.G.E.N Discussion

Again ???  :wall:
A similar post was already done dude, and you need to convert yourself to mugen 1.0 +, you just need to use the trigger AIlevel and not all this old codes ... mugen 1.0 is the way, is the true and is your salvation ! Convert yourself heretic !!!!  :laugh:
ok where is the post? link me to it
LOL, do you even understand what your code does ?
i know there a better code which no conflict with other random. but it need time to delete these old code. while my code only insert it without delete anything. that's why the title "easy way" ignore the fact it will conflict with other random. also i think nobody ever use (ailevel^4)/4  which is simple as hax
it's funny because I just read the trigger part of the code and ignored where he used it so I tought it made sense; something like having:

triggerall = random < 100

as a trigger, then replaced as

triggerall = random < iLEVEL*aiLEVEL*aiLEVEL*aiLEVEL/4

in the ai change states
it kinda makes sense to replace the 100 for an aiLevel expression, but since ai level goes from 0 to 10 (?) it would be something like

random < ( 100 * aiLevel/10.0)
    

easy way to add scalable AI for existing non scalable AI in mugen 1.0

 August 08, 2014, 01:14:39 pm View in topic context
 Posted by yaminogun  in easy way to add scalable AI for existing non scalable AI in mugen 1.0 (Started by yaminogun August 08, 2014, 01:14:39 pm
 Board: M.U.G.E.N Discussion

just insert this 1 code 
Code:
triggerall = random < aiLEVEL*aiLEVEL*aiLEVEL*aiLEVEL/4
to near which similar like this code
Code:
[State -1]
type = VarSet
triggerall = var(59) != 1
trigger1  = command = "CPU1"
trigger2  = command = "CPU2"
trigger3  = command = "CPU3"
trigger4  = command = "CPU4"
trigger5  = command = "CPU5"
trigger6  = command = "CPU6"
trigger7  = command = "CPU7"
trigger8  = command = "CPU8"
trigger9  = command = "CPU9"
trigger10  = command = "CPU10"
trigger11  = command = "CPU11"
trigger12  = command = "CPU12"
trigger13  = command = "CPU13"
trigger14  = command = "CPU14"
trigger15  = command = "CPU15"
trigger16  = command = "CPU16"
trigger17  = command = "CPU17"
trigger18  = command = "CPU18"
trigger19  = command = "CPU19"
trigger20  = command = "CPU20"
trigger21  = command = "CPU21"
trigger22  = command = "CPU22"
trigger23  = command = "CPU23"
trigger24  = command = "CPU24"
trigger25  = command = "CPU25"
trigger26  = command = "CPU26"
trigger27  = command = "CPU27"
trigger28  = command = "CPU28"
trigger29  = command = "CPU29"
trigger30  = command = "CPU30"
trigger31  = command = "CPU31"
trigger32  = command = "CPU32"
trigger33  = command = "CPU33"
trigger34  = command = "CPU34"
trigger35  = command = "CPU35"
trigger36  = command = "CPU36"
trigger37  = command = "CPU37"
trigger38  = command = "CPU38"
trigger39  = command = "CPU39"
trigger40  = command = "CPU40"
trigger41  = command = "CPU41"
trigger42  = command = "CPU42"
trigger43  = command = "CPU43"
trigger44  = command = "CPU44"
trigger45  = command = "CPU45"
trigger46  = command = "CPU46"
trigger47  = command = "CPU47"
trigger48  = command = "CPU48"
trigger49  = command = "CPU49"
trigger50  = command = "CPU50"
var(59) = 1

after insert the code will look like this
Code:
[State -1]
type = VarSet
triggerall = var(59) != 1
triggerall = random < aiLEVEL*aiLEVEL*aiLEVEL*aiLEVEL/4
trigger1  = command = "CPU1"
trigger2  = command = "CPU2"
trigger3  = command = "CPU3"
trigger4  = command = "CPU4"
trigger5  = command = "CPU5"
trigger6  = command = "CPU6"
trigger7  = command = "CPU7"
trigger8  = command = "CPU8"
trigger9  = command = "CPU9"
trigger10  = command = "CPU10"
trigger11  = command = "CPU11"
trigger12  = command = "CPU12"
trigger13  = command = "CPU13"
trigger14  = command = "CPU14"
trigger15  = command = "CPU15"
trigger16  = command = "CPU16"
trigger17  = command = "CPU17"
trigger18  = command = "CPU18"
trigger19  = command = "CPU19"
trigger20  = command = "CPU20"
trigger21  = command = "CPU21"
trigger22  = command = "CPU22"
trigger23  = command = "CPU23"
trigger24  = command = "CPU24"
trigger25  = command = "CPU25"
trigger26  = command = "CPU26"
trigger27  = command = "CPU27"
trigger28  = command = "CPU28"
trigger29  = command = "CPU29"
trigger30  = command = "CPU30"
trigger31  = command = "CPU31"
trigger32  = command = "CPU32"
trigger33  = command = "CPU33"
trigger34  = command = "CPU34"
trigger35  = command = "CPU35"
trigger36  = command = "CPU36"
trigger37  = command = "CPU37"
trigger38  = command = "CPU38"
trigger39  = command = "CPU39"
trigger40  = command = "CPU40"
trigger41  = command = "CPU41"
trigger42  = command = "CPU42"
trigger43  = command = "CPU43"
trigger44  = command = "CPU44"
trigger45  = command = "CPU45"
trigger46  = command = "CPU46"
trigger47  = command = "CPU47"
trigger48  = command = "CPU48"
trigger49  = command = "CPU49"
trigger50  = command = "CPU50"
var(59) = 1


TAKE A NOTE THIS CODE CAN SOMETIME CAUSE the AI goes max difficulty again.  better follow the tutorial in infinitymugenteam
    

Re: Does this thing exist?/who is the author?/etc. thread.

 August 06, 2014, 12:03:27 pm View in topic context
 Posted by yaminogun  in Does this thing exist?/who is the author?/etc. thread.  (Started by Messatsu August 26, 2007, 08:29:40 pm
 Board: Requests

yinyin from dongdong never dies
    

Re: Save me My Friend! Hard to test

 July 30, 2014, 08:32:13 am View in topic context
 Posted by yaminogun  in Save me My Friend! Hard to test (Started by beterhans July 29, 2014, 09:59:01 am
 Board: Development

    

Re: Does this thing exist?/who is the author?/etc. thread.

 July 30, 2014, 05:23:19 am View in topic context
 Posted by yaminogun  in Does this thing exist?/who is the author?/etc. thread.  (Started by Messatsu August 26, 2007, 08:29:40 pm
 Board: Requests

any info about this stage?
    

Re: The Dome City of Enetroia

 July 29, 2014, 05:13:37 pm View in topic context
 Posted by yaminogun  in The Dome City of Enetroia (Started by Ryoucchi July 24, 2014, 07:08:32 am
 Board: Your Releases, Mugen 1.0 +

sorry oot, but i didn't get any email confirmation to complete register in mffa. i say this because you're moderator there
    

Re: M.U.G.E.N Screenshots V3

 July 28, 2014, 01:37:29 pm View in topic context
 Posted by yaminogun  in M.U.G.E.N Screenshots V3 (Started by Lith May 13, 2014, 03:05:14 am
 Board: M.U.G.E.N Discussion


thats what happen when you fusion with broly. his stab wound reopen again
    

Re: Does this thing exist?/who is the author?/etc. thread.

 July 28, 2014, 01:07:49 pm View in topic context
 Posted by yaminogun  in Does this thing exist?/who is the author?/etc. thread.  (Started by Messatsu August 26, 2007, 08:29:40 pm
 Board: Requests

any info about this stage ?
 
    

Re: What makes a video game for you?

 July 28, 2014, 08:34:04 am View in topic context
 Posted by yaminogun  in What makes a video game for you? (Started by Lith July 27, 2014, 11:44:54 pm
 Board: Gaming

-no censor. gta3 gore vs gta5 for example
-realistic graphic with low system requirement
-low network bandwidth
-no headache guarantee
-have a lot easy mission
-great partner
-save anytime
-flying mode/fun mode
-have hilarious bug /achievement/ gameplay
-overpowered cheat
-easy to mod
-swap model
    

Re: Games you wish had gotten sequels?

 July 28, 2014, 08:17:57 am View in topic context
 Posted by yaminogun  in Games you wish had gotten sequels? (Started by DMK February 22, 2013, 12:30:02 pm
 Board: Gaming

starsiege (1999) -> starsiege 2 (2015)
    

Re: What ruins a video game for you?

 July 27, 2014, 11:47:27 am View in topic context
 Posted by yaminogun  in What ruins a video game for you? (Started by JustAGuy92 July 26, 2014, 05:23:45 pm
 Board: Gaming

-trialware video game
-video game which cause headache . spyro for example
-video game which make lies about God, religion and brainwash most of you
    

Re: Bley43's pals [Requests Open]

 July 27, 2014, 03:30:18 am View in topic context
 Posted by yaminogun  in Bley43's pals [Requests Temporarly Closed] (Started by bley43 September 25, 2013, 08:48:35 pm
 Board: Edits & Addons 1.0+

i need these palette for morrigan+likun
    

Re: victory themes

 July 26, 2014, 03:33:33 pm View in topic context
 Posted by yaminogun  in victory themes (Started by NinjaGuy24 July 26, 2014, 02:56:05 pm
 Board: M.U.G.E.N Configuration Help

yes
    

Re: [1280x720] World Warriors X HD Remake - MUGEN 1.1 only

 July 26, 2014, 09:17:52 am View in topic context
 Posted by yaminogun  in [1280x720] World Warriors X HD Remake - MUGEN 1.1 only (Started by presidentdevon July 25, 2014, 09:09:06 am
 Board: Your Releases, Mugen 1.0 +

non custom potrait version?
    

Re: Haohmaru, Robert Garcia (updated 07/25/2014)

 July 26, 2014, 08:59:22 am View in topic context
 Posted by yaminogun  in Haohmaru (updated 07/28/2014)  (Started by Chazzanova July 25, 2014, 01:59:07 pm
 Board: Your Releases, Mugen 1.0 +

i found bug
    

Re: Brazilian Government BANNED Cartoons from Country's publitcity and Open TV

 July 24, 2014, 06:48:22 am View in topic context
 Posted by yaminogun  in Brazilian Government BANNED Cartoons from Country's publitcity and Open TV (Started by ShinZankuro July 24, 2014, 05:01:08 am
 Board: All That's Left

all people actually brainwashed by all man made story in media including tv and by brainwashed adult(including your parent) to make them/you against God. don't follow what most people do, which is already brainwashed.
only the one who try do research in God Holy book and understand the truth about it didn't get brainwashed. try research the holy book of God which only has 1 version. find it from the religion which only has 1 holy book version.  the religion which has many version of holy book can confuse you. but you can do step 2 after step 1. be patient, keep research the truth.

what i say above didn't work if you threat God as enemy. don't bother reply me if you hate God, because im not gonna reply you back.
God test you because God want you understand the meaning of life and the truth inside the holy book. once you found the truth and want to make God love you. you will get reward which most people didn't know: best dream ever. and great afterlife.

bad grammar is art to make people angry, hate or laugh.