Jump to content

Tayst

Members
  • Posts

    18
  • Joined

  • Last visited

Posts posted by Tayst

  1. G'day mate

    Are you an Aussie, Kiwi or Asia Pacific player sick of 200 ping? Tired of getting 1-2 duels with the random that joined an Aus server only for them to vanish without a trace? Well today I'd like to introduce you to the Jedi Knight Oceanic discord server. This is where players from the Oceanic region and beyond come for their Jedi Knight fix.

    We have sections for Jedi Academy, Jedi Outcast, Movie Battles II and Vertex, running both casual and ranked pickup games. As activity grows, we plan on running more events and tournaments with sick prizes.

    But we can't do it without you! So join today:

    https://discord.gg/ocejk

    spacer.png

     

     

    Makha, Link and Smoo like this
  2. 3 hours ago, Lord Of Hate said:

    This wouldn't change the model, you would however, see a longer sword trail. But as far as the physical sword itself, it wouldn't hit anyone, you'd just be hitting them with air, depending on how long the sword actually is.

    All good, thanks. I managed to extend the blade in blender, and then used trial and error to match its length to the default saber length. I use the command /cg_forceownsaber Murasama to visually give me the sword, and then /saber single_8 to show single_8 to everyone else, and to use single_8’s length. This way I can use any hilt/sword in hilt I like, without it defaulting time the kyle saber on everyone else’s end. unfortunately adding the hilts to the server isn’t an option for me. 
     

    Hope that helps explain what I’m trying to achieve and why. Basically I just want the sword to draw to the same length as the saber that I am actually wielding. 

    Xioth likes this
  3. On 11/25/2020 at 10:35 PM, Wettergren (Vet) said:

    Anyone else having issues with creating a .roq video, but cannot find the right program to do so,
    the following can be used very easily, and with quite a lot of optional, but nice settings:

    - YTD (YouTube Downloader, by GreenTree Applications)
    In order to create a video, simply follow this step-by-step guide

    1 ) Open YTD and navigate to "Convert"
    2 ) Drag your video into YTD (most movie formats are accepted), I used an .avi file
    3 ) Click on "Convert to"
    4 ) Select "Manual Convert (...)"
    5 ) Click the red "Convert"-button
    6 ) When prompted to enter the input data, you are able to change some things, these being marked with Bold.
    YTD also gives some information on some of the abbriviations.

    The original code looks something like this

      Hide contents

    ffmpeg -i %1 __________ -strict -2 -vf scale=420:-1 -r 14 -b:v 50k -ar 44100 -ab 56k -ac 1 %2.mp4

    You must now change it to the following:

      Hide contents

    ffmpeg -i %1 -s 512x512 -strict -2 -vf scale=420:-1 -r 30 -b:v 50k -ar 22050 -ab 56k -ac 1 %2.roq

    -s decides the height & width of the output (.roq) file (default size is determined by the input file). The size MUST be in the form of the ^2 (2, 4, 8, 16, 32, 64, 128, 256, 512, going higher than 512 can create some unforeseen issues)
    -r decides the frame-rate, you'll normally want this to be 28-30 fps, but in case you have to compress the video size, you may want to go down to 15-20 fps (This obviously doens't work on videos that has a specific fps, like movies)
    -ab decides the audio-bandwidth, this will also decrease or increase the file size
    -ar decides the sound frequency, in order to create a .roq video, this value MUST be 22050 Hz
    .roq decides the file output, in this case, it MUST be .roq

    7 ) Now click "Okay"
    8 ) This bit might take some time, depending on your file size, for comparrison, my video was 3:25 long, and had a file size of 99.9 MB, it took roughly 30 min. to convert
    9 ) Enjoy ?
    9a ) a note on the 512x512 dimensions, the movie will be stretched by JKA itself, so don't worry if you open the .roq file in VLC and think it looks wierd ?

    Thank you so much! You just made this process so much easier. QVM was a big hassle, and finding a free GUI for ffmpeg seemed impossible. 

  4. This is a great write up! The example for the command cycler is close, but will not work as is. Here's the fixed version:

    bind "." exec cycler
    bind "[" vstr cycleprev
    bind "]" vstr cyclenext
    bind "P" vstr cycle
    
    seta cycle "vstr cycle1"
    seta cycle1 "set cycleprev vstr cycle7;set cyclenext vstr cycle2; set cycle COMMAND1; echo NAME1"
    seta cycle2 "set cycleprev vstr cycle1;set cyclenext vstr cycle3; set cycle COMMAND2; echo NAME2"
    seta cycle3 "set cycleprev vstr cycle2;set cyclenext vstr cycle4; set cycle COMMAND3; echo NAME3"
    seta cycle4 "set cycleprev vstr cycle3;set cyclenext vstr cycle5; set cycle COMMAND4; echo NAME4"
    seta cycle5 "set cycleprev vstr cycle4;set cyclenext vstr cycle6; set cycle COMMAND5; echo NAME6"
    seta cycle6 "set cycleprev vstr cycle5;set cyclenext vstr cycle7; set cycle COMMAND6; echo NAME7"
    seta cycle7 "set cycleprev vstr cycle6;set cyclenext vstr cycle1; set cycle COMMAND7; echo NAME7"

    "." Reloads the file

    "[" Shows the previous command in the cycle

    "]" Shows the next command in the cycle

    "P" Executes the command

    COMMAND is the command and NAME is what you will see when selecting the command.

     

    Here''s a version that I'm using to select a message to send after a duel:

    bind "." exec messagecycler
    bind "[" vstr cycleprev
    bind "]" vstr cyclenext
    bind "P" vstr cycle
    
    seta cycle "vstr cycle1"
    seta cycle1 "set cycleprev vstr cycle7;set cyclenext vstr cycle2; set cycle say Good Fight; echo Good Fight"
    seta cycle2 "set cycleprev vstr cycle1;set cyclenext vstr cycle3; set cycle say Good Duel; echo Good Duel"
    seta cycle3 "set cycleprev vstr cycle2;set cyclenext vstr cycle4; set cycle say GG; echo GG"
    seta cycle4 "set cycleprev vstr cycle3;set cyclenext vstr cycle5; set cycle say GF; echo GF"
    seta cycle5 "set cycleprev vstr cycle4;set cyclenext vstr cycle6; set cycle say Well Played; echo Well Played"
    seta cycle6 "set cycleprev vstr cycle5;set cyclenext vstr cycle7; set cycle say Close one!; echo Close One"
    seta cycle7 "set cycleprev vstr cycle6;set cyclenext vstr cycle1; set cycle say Whew!; echo Whew"

     

    Smoo likes this
×
×
  • Create New...