Another problem
|
|
vhcm21 | Date: Tuesday, 2011-08-30, 3:08 PM | Message # 1 |
Adult
Group: Users
Messages: 45
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| I tested some of my chars, and I discovered that for example the command down, fwd, a don't work. How can I put them to work? Thanks for the answers, but for me, giving reputation is disabled, acording as some have told me.
|
|
| |
sgn_15 | Date: Tuesday, 2011-08-30, 3:15 PM | Message # 2 |
God
Group: contributor
Messages: 2518
Awards: 4
Reputation: 31
Reproofs: 0%
Status: Offline
| well, im only trying to help. dont get offended
commands have 2 parts, the shortcut on top and the actual changestate for the move at bottom part of cmd
try to increase the time of command shortcut maybe? and look at your changestate below, did you add more conditions for the move to be used? like # or Added (2011-08-30, 3:15 PM) --------------------------------------------- and post your cmd code of that problem so we see what is wrong with your command
|
|
| |
vhcm21 | Date: Tuesday, 2011-08-30, 3:30 PM | Message # 3 |
Adult
Group: Users
Messages: 45
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| [State -1, Throw kunai] type = ChangeState value = 67543 triggerall = command = "Throw kunai" trigger1 = (statetype = s) && ctrl // Throw kunai = down fwd a
The char with this command can do the command but if I use it on another chars it don't work.Added (2011-08-30, 3:30 PM) --------------------------------------------- I forgot of the time: 15 Added (2011-08-30, 3:30 PM) --------------------------------------------- I don't have cmd code, sorry.
|
|
| |
sgn_15 | Date: Tuesday, 2011-08-30, 3:35 PM | Message # 4 |
God
Group: contributor
Messages: 2518
Awards: 4
Reputation: 31
Reproofs: 0%
Status: Offline
| you need to have shortcut like this
[Command] name = "super attack" command = D,F,a time = 10
then this is the changestate
[State -1] type = ChangeState value = 400 triggerall = command = "super attack" trigger1 = (statetype = s) && ctrl
|
|
| |
vhcm21 | Date: Tuesday, 2011-08-30, 3:55 PM | Message # 5 |
Adult
Group: Users
Messages: 45
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| I'll try it. And then I'll say you the result. Added (2011-08-30, 3:55 PM) --------------------------------------------- It doesn't work, but thanks for the help.
|
|
| |
sgn_15 | Date: Tuesday, 2011-08-30, 3:58 PM | Message # 6 |
God
Group: contributor
Messages: 2518
Awards: 4
Reputation: 31
Reproofs: 0%
Status: Offline
| no problem dude, just ask here again if it doesnt work and check kfm's cmd for reference. its the best reference for simple stuff like this Added (2011-08-30, 3:58 PM) --------------------------------------------- wait..... check where you place those codes
and increase the time to 30 then try the command again command name should be exactly the same
remember my example was "down forward a"
|
|
| |
vhcm21 | Date: Tuesday, 2011-08-30, 4:03 PM | Message # 7 |
Adult
Group: Users
Messages: 45
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| I placed the changestate in the cmd file and the command shortcut in the commands file. And unfortunately, increasing time to 30 doesn't work more one time.
|
|
| |
sgn_15 | Date: Tuesday, 2011-08-30, 4:10 PM | Message # 8 |
God
Group: contributor
Messages: 2518
Awards: 4
Reputation: 31
Reproofs: 0%
Status: Offline
| Quote [Remap] x = x y = y z = z a = a b = b c = c s = s
;-| Default Values |------------------------------------------------------- [Defaults] ; Default value for the "time" parameter of a Command. Minimum 1. command.time = 30
; Default value for the "buffer.time" parameter of a Command. Minimum 1, ; maximum 30. command.buffer.time = 1
;-| Super Motions |--------------------------------------------------------
;-| Special Motions |------------------------------------------------------
;-| Double Tap |----------------------------------------------------------- [Command] name = "FF" ;Required (do not remove) command = F, F time = 10
[Command] name = "BB" ;Required (do not remove) command = B, B time = 10
;-| 2/3 Button Combination |----------------------------------------------- [Command] name = "recovery" ;Required (do not remove) command = x+y time = 1
Quote [Statedef -1]
;=========================================================================== ;---------------------------------------------------------------------------
;=========================================================================== ;--------------------------------------------------------------------------- ; Run Fwd [State -1, Run Fwd] type = ChangeState value = 100 trigger1 = command = "FF" trigger1 = statetype = S trigger1 = ctrl
;--------------------------------------------------------------------------- ; Run Back [State -1, Run Back] type = ChangeState value = 105 trigger1 = command = "BB" trigger1 = statetype = S trigger1 = ctrl
you put the shortcut when you find the codes in the first quote (of this post) then put the changestates when you see the codes of 2nd quote of this post
you see the similar codes of shortcuts and changestates?
|
|
| |
vhcm21 | Date: Tuesday, 2011-08-30, 4:29 PM | Message # 9 |
Adult
Group: Users
Messages: 45
Awards: 0
Reputation: 0
Reproofs: 0%
Status: Offline
| Yes! Thank you so much, sgn_15! Its resolved! It works! You helped me a lot! Thanks more one time!
|
|
| |
sgn_15 | Date: Tuesday, 2011-08-30, 4:32 PM | Message # 10 |
God
Group: contributor
Messages: 2518
Awards: 4
Reputation: 31
Reproofs: 0%
Status: Offline
| lol no problem. its a good feeling to have helped people
|
|
| |