Jump to content

ent

Members
  • Posts

    554
  • Joined

  • Last visited

Posts posted by ent

  1. /cl_maxpackets <value> - If you have a low ping go with 100. If you're struggling for a decent ping, you might want to try 30 - 50.
    

    Changing cl_maxpackets make fake ping changes, because ping is bound to your physical distance between you and server. It does not change ping!

     

    And this value supposes only to be more or equal than sv_fps (server fps) and less or equal than com_maxfps (client fps). And the best value supposes to be equal to com_maxfps, but if it's impossible (for example you have com_maxfps 125 and the max value of cl_maxpackets is 100) then you better set it as a half of your fps (if you have 125, then cl_maxpackets should be 125 / 2 = ~63) to not send extra packets and save some traffic (that's why it shows different ping which is not actually different). But be sure it's more or equal than sv_fps.

     

    I only wanted to say that if you don't really know what the cvar do then I think you should not give an explanation.

     

    P.S.: @Raz0r, fix me if I made a mistake, pl0x.

    Raz0r likes this
  2. After releasing 1.3 which is almost ready I will start working on it, but some key people (@Scooper) who are helping me on a new feature are not available right now, so I cannot say when I even gonna start.

    Plus I need fully compiling jk2mp, and as one guy said I can find such version on https://github.com/ioquake/jedi-outcast/, but I didn't test it yet. If you or your jk2 mates can test it or just give me another compiling one then it could help.

     

    I think making raw version will take at least one week because there are a lot of injections into the code such as: enhanced demo player, enhanced audio player, client game rewriting for compatibility, a lot of additions into renderer etc. It's not hard, just a lot of routine to do.

    You could also prepare some different demos from different gametypes and different game versions, so I can test and debug every major and minor mistakes. I prefer demos from actual gameplays than just recorded for me.

    Boothand likes this
  3. If your mod is what you used here, I'd be very excited!

     

    My mod is next generation of what you saw in the video. There is pugmod in the video which I modified for better cams, but still not perfect mod. The current mod, jaMME, has much more functions and the main ones are pausing and rewinding demos, of course.

    The source code of jk2mp is probably 1.04, but if it can play 1.02 demos then lucky you. :P At least I will try to make it support all possible versions.

     

    The mod will look like this:

    611844-4.jpg

     

    61b4df-4.jpg

    Boothand likes this
  4. By launcher do you mean launch_jaMME.cmd file?

     

    And as you said before, it happened after installing the Windows update, right? If so, then you could try to restore your system using backup feature to a day before the update. You won't lose regular files, only lose some progs and settings that were installed after that backup day.

     

    Also, try this new unofficial version: http://www.speedyshare.com/5RbD8/download/jaMME-1.3-unofficial.zip

  5. Thanks to @Raz0r for spreading my shit (it even makes me feel embarrassed  :wub: ), but how about to stop mocking people and their fav game types or mods (this addressed not to Raz0r)? If someone likes fullforce and organizes a server, then it's great. Our community (JA/JO) is very little, and argueing about mods (ja+/base) or gametypes (duel with/without force, ctf, ffa guns etc) or whatever is just nonsense. Respect guys who play others stuff in the community, please. Maybe one day they will come to your mod/gametype just because you were nice to them?

     

    Personally I watched some demos from Full Force and I enjoyed them. But I still play ctf. I also used to spend a lot time on old ups server with racearena where you could do strafe jumping with records and twi'leks. And it's different gametypes, and it's different mods including ja+ and base. I like some things in ja+, I like other things in base, and I also don't like some things. But I don't think I should force to love another mod or gametype or anything.

     

    So I'd thank this guy for making one more place where people from our community can play, and therefore keep this community alive.

    And I ask you again, guys, to respect other players and their taste of mods/gametypes.

     

    P.S.: I am sorry for this offtop and this wall of words.

     

    POKING: @Ping, @Bacon, @ensiform

    h643 likes this
  6. I looked at the code a bit. And I am not sure how would I make it. I thought about adding possibility to use that shader directly like you can use $whiteimage. But it's a bit hard, and I am lazy to dig in it.

     

    I'd suggest you to ask Xycaleth, he is aware about game renderer more. And it's not about SDK already, about the engine modifying.

  7. @Fire Phoenix, let me quote myself:

     

    This cloak effect is hardcoded and can be used only with modifying the game code afaik.

     

    Let me attach some code example:

    cgs.media.cloakedShader = trap_R_RegisterShader( "gfx/effects/cloakedShader" );
    
    if (cg_shadows.integer != 2 && cgs.glconfig.stencilBits >= 4 && cg_renderToTextureFX.integer)
    {
    	trap_R_SetRefractProp(1.0f, 0.0f, qfalse, qfalse); //don't need to do this every frame.. but..
    	legs.customShader = 2; //crazy "refractive" shader
    	trap_R_AddRefEntityToScene( &legs );
    	legs.customShader = 0;
    }
    else
    { //stencil buffer's in use, sorry
    	legs.renderfx = 0;//&= ~(RF_RGB_TINT|RF_ALPHA_FADE);
    	legs.shaderRGBA[0] = legs.shaderRGBA[1] = legs.shaderRGBA[2] = legs.shaderRGBA[3] = 255;
    	legs.customShader = cgs.media.cloakedShader;
    	trap_R_AddRefEntityToScene( &legs );
    	legs.customShader = 0;
    }
    

    The shader does not have the path, and its order number is always 2.

×
×
  • Create New...