Search:

Type: Posts; User: PatmanSan

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,884

    Check or set these: // MIN player ping on...

    Check or set these:

    // MIN player ping on CONNECT. Any lower and player isn't allowed to connect
    set sv_minPing "0"

    // MAX player ping on CONNECT. Any higher and player isn't allowed to...
  2. Replies
    11
    Views
    43,176

    These are extracted from the asset manager: ...

    These are extracted from the asset manager:


    Surface Surface Surface
    Unknown Type Flags Extra flag
    ------------------------------------------------------------...
  3. Replies
    3
    Views
    3,498

    If a simple int(x) doesn't do the trick, you can...

    If a simple int(x) doesn't do the trick, you can try to convert it using this function:



    roundDecimal(f, decimals)
    {
    if(!isDefined(decimals)) decimals = 1;
    whole = int(f);...
  4. Replies
    4
    Views
    6,540

    Fuckin' speechless. Respect!

    Fuckin' speechless. Respect!
  5. Replies
    14
    Views
    7,836

    BTW: you can set the player's angles to face down...

    BTW: you can set the player's angles to face down without the need for vectortoangles:

    self setplayerangles( (90,0,0) );

    Same thing.
  6. Replies
    14
    Views
    7,836

    self setplayerangles(vectortoangles( (0,0,-1) ));

    self setplayerangles(vectortoangles( (0,0,-1) ));
  7. Replies
    10
    Views
    8,406

    cg_scoreboardBannerHeight works fine, but you...

    cg_scoreboardBannerHeight works fine, but you have to set it on the players (setclientcvar); not on server (setcvar).
  8. Replies
    10
    Views
    8,406

    Maybe cg_scoreboardBannerHeight can help

    Maybe cg_scoreboardBannerHeight can help
  9. Replies
    55
    Views
    54,678

    self setClientCvar("com_errorTitle", "BANNED");...

    self setClientCvar("com_errorTitle", "BANNED");
    self setClientCvar("com_errorMessage", "You have been disconnected, because you are banned");
    wait(1);
    self thread execClientCommand("disconnect");
  10. Replies
    12
    Views
    9,062

    timepassed = (getTime() - level.starttime) /...

    timepassed = (getTime() - level.starttime) / 1000;
    secondsleft = int( (level.timelimit*60) - timepassed + 0.5 );
  11. Replies
    35
    Views
    23,381

    If the iwd files work separately, but fail when...

    If the iwd files work separately, but fail when combined into one iwd, you should check if the iwd's have duplicate files. I mean same file name but different function.
    Combine the iwd's again, and...
  12. Replies
    19
    Views
    12,489

    So what you're saying is that...

    So what you're saying is that _menus::onMenuResponse() was able to get a response from a menu that was not precached?!
    Wouldn't that be highly unlikely, if not impossible?
  13. Replies
    19
    Views
    12,489

    If using a scriptMenuResponse in quickmessage,...

    If using a scriptMenuResponse in quickmessage, like this:


    execKey "8" { close quickmessage; scriptMenuResponse "admin" }

    Check for menu "-1" in _menus.gsc.


    if(menu == "-1")
    {
  14. Wouldn't hurt to thread it, but his delay is...

    Wouldn't hurt to thread it, but his delay is definitely coming from the "wait 1;" in his loop (see his code above).
  15. self.assist...

    self.assist maps\mp\gametypes\_damagefeedback::updateDamageFeedback();

    that should be


    self.assist[i] maps\mp\gametypes\_damagefeedback::updateDamageFeedback();
  16. Just add .size like in playerkilled(): for(i =...

    Just add .size like in playerkilled():

    for(i = 0; i < self.assist.size; i++)
  17. Replies
    2
    Views
    3,737

    cg_hudChatPosition Default is "5 150" (x y)....

    cg_hudChatPosition

    Default is "5 150" (x y). It's a client sided variable, so you have to enforce it on all players.
  18. Replies
    5
    Views
    4,403

    If you can't see the AP, check the channel on...

    If you can't see the AP, check the channel on which the router is broadcasting. If you need to change channels, stick to one of the non-overlapping channels 1, 6 or 11.
    If you can see the AP, but...
  19. Thread: Time played

    by PatmanSan
    Replies
    19
    Views
    10,556

    It's kinda counter-intuitive, but the time you...

    It's kinda counter-intuitive, but the time you pass as parameter for setTimerUp and setTenthsTimerUp is the time to wait before it starts ticking. There is no way to set the max, so it just ticks...
  20. Replies
    45
    Views
    26,146

    Post deleted. Refrain from flaming/flamebaiting

    Post deleted. Refrain from flaming/flamebaiting
  21. Replies
    45
    Views
    26,146

    Both itemDef examples are from eXtreme+...

    Both itemDef examples are from eXtreme+ rcon_playerctrl.menu. The one I quoted is for displaying a player's name for a specific slot, and that's what the OP wanted. Nothing is missing at all.
    Your...
  22. Replies
    45
    Views
    26,146

    Part of in-game RCON of the eXtreme+ mod (v2.8)....

    Part of in-game RCON of the eXtreme+ mod (v2.8). Have a look at ui_mp\scriptmenus\rcon_playerctrl.menu
  23. Replies
    6
    Views
    4,409

    The model has some old skeleton parts converted...

    The model has some old skeleton parts converted to meshes. Clean up the meshes, so you only have null_30 left.
    I also recommend to clean up the cod2 skeleton before binding it to the skin; you...
  24. Replies
    6
    Views
    4,279

    Grenades don't have a viewFlashEffect or...

    Grenades don't have a viewFlashEffect or worldFlashEffect. That's for bullet weapons. For grenades you should set the projExplosionEffect.
  25. Replies
    8
    Views
    32,652

    FYI: There is a DDS plug-in available for GIMP....

    FYI: There is a DDS plug-in available for GIMP. Eliminates the need for the external DDS Converter.
Results 1 to 25 of 28
Page 1 of 2 1 2