Toribash
View Poll Results: Should this be a script
Yes
32 Votes / 82.05%
No
7 Votes / 17.95%
Voters: 39. You may not vote on this poll
View Poll Results

I never knew uke is a good dancer...


EDIT:Amazing.(uke dancing 2).I mean...just look at the ending pose...

EDIT 2:Man...look at how uke kicks his hand at the end...(amazing uke)

EDIT 3:This script amazes me...just watch this(uke and me playing football)
Attached Files
uke dance.rpl (293.3 KB, 12 views)
uke dancing 2.rpl (293.3 KB, 11 views)
amazing uke.rpl (288.8 KB, 11 views)
uke and me playing football;.rpl (294.5 KB, 16 views)
Last edited by vladvlad; Jan 1, 2009 at 11:48 AM.
Proud member of [Pandora]
thumbing through the bands I be playin' with the check, keep it real 'til I die, put it on my set Tapion's Avatar
4th Dan Black Belt
Join Date: Jul 2008
Posts: 2,373
Look what happened, plix, its a bodysplit and DEcap.

And I wonder, is it possible to make a randomer script that works for the player positioned at either uke or toris spot, you know, for that specific player. And watch my replay now.
Attached Files
WTF RANDOMIZER.rpl (292.7 KB, 11 views)
Sigma | Gata
Lost pet looking for home
Originally Posted by Blam View Post
....
        set_grip_info(b, BODYPARTS.L_HAND, math.random(0,2))
        set_grip_info(b, BODYPARTS.R_HAND, math.random(0,2))
....

....
        set_grip_info(b, BODYPARTS.L_HAND, math.random(0,1))
        set_grip_info(b, BODYPARTS.R_HAND, math.random(0,1))
....
does make much more sense as there is only two states of hands: grabby/ungrabby

Also i advice to add run_frames(20) or whatever here:
...
local function joint_random()
    for b = 0,1 do
        for k,v in pairs(JOINTS) do
            set_joint_state(b, v, math.random(1,4))
        end
        set_grip_info(b, BODYPARTS.L_HAND, math.random(0,1))
        set_grip_info(b, BODYPARTS.R_HAND, math.random(0,1))
        run_frames(20)
    end
end
....
For the guys who dont like pressing space
thumbing through the bands I be playin' with the check, keep it real 'til I die, put it on my set Tapion's Avatar
4th Dan Black Belt
Join Date: Jul 2008
Posts: 2,373
hmmm...
Smart....
About the run frames thing.
Sigma | Gata
Lost pet looking for home