Jump to content

BECK

Subscriber
  • Posts

    225
  • Joined

  • Last visited

  • Days Won

    21

Reputation Activity

  1. Like
    BECK reacted to TheSilencerPL in unban players   
    LOL, this sounds like: "we don't allow cheaters, but our cheating friends are OK"
  2. Like
    BECK got a reaction from Purple in !ban ?   
    It's worked for us, but you probably know this stuff better than I.
  3. Like
    BECK got a reaction from SadNesS in !ban ?   
    Tyranny commands.  Make his life miserable.   !mute, !burn, !gib, !disorient, etc...
     
    I wrote a LUA script that I won't share here that is an auto-bot against trouble players - that way we can go about our business and play and the troll won't even be able to join a team.    Can't hack if you can't play!   Eventually they get tired of being ignored and not being able to do anything and leave on their own.
  4. Like
    BECK got a reaction from neks in To all with test access to 0.9.0   
    Looking forward to the new version, thanks to you all for your hard work on this.
  5. Like
    BECK reacted to Dragonji in Ppsh damage?   
    What's the problem? You can completely disable it with g_classWeapons.
  6. Like
    BECK reacted to Purple in Help-with-fun-settings   
    Shouldn't be any errors tried a different method (sets ammo on spawn like code beck posted) let me know if any guns etc are missing or ammo is not right
    --[[ Unlimited ammo and weapons for Hunter @ mygamingtalk Credits: Purple & Lilly (my gf :DDD) 3/24/2015 ]] function et_InitGame(levelTime,randomSeed,restart) et.RegisterModname( "Unlimited Ammo & Guns" ) maxclients = tonumber( et.trap_Cvar_Get( "sv_maxClients" ) ) end function et_ClientSpawn(clientNum,revived) et.gentity_set(clientNum, "ps.ammo", 2, 9999) et.gentity_set(clientNum, "ps.ammo", 3, 9999) et.gentity_set(clientNum, "ps.ammo", 4, 9999) et.gentity_set(clientNum, "ps.ammo", 5, 9999) et.gentity_set(clientNum, "ps.ammo", 6, 9999) et.gentity_set(clientNum, "ps.ammo", 7, 9999) et.gentity_set(clientNum, "ps.ammo", 8, 9999) et.gentity_set(clientNum, "ps.ammo", 9, 9999) et.gentity_set(clientNum, "ps.ammo", 10, 9999) et.gentity_set(clientNum, "ps.ammo", 11, 9999) et.gentity_set(clientNum, "ps.ammo", 12, 9999) et.gentity_set(clientNum, "ps.ammo", 13, 9999) et.gentity_set(clientNum, "ps.ammo", 15, 9999) et.gentity_set(clientNum, "ps.ammo", 23, 9999) et.gentity_set(clientNum, "ps.ammo", 24, 9999) et.gentity_set(clientNum, "ps.ammo", 25, 9999) et.gentity_set(clientNum, "ps.ammo", 26, 9999) et.gentity_set(clientNum, "ps.ammo", 29, 9999) et.gentity_set(clientNum, "ps.ammo", 31, 9999) et.gentity_set(clientNum, "ps.ammo", 32, 9999) et.gentity_set(clientNum, "ps.ammo", 33, 9999) et.gentity_set(clientNum, "ps.ammo", 35, 9999) et.gentity_set(clientNum, "ps.ammo", 37, 9999) et.gentity_set(clientNum, "ps.ammo", 38, 9999) et.gentity_set(clientNum, "ps.ammo", 39, 9999) et.gentity_set(clientNum, "ps.ammo", 42, 9999) et.gentity_set(clientNum, "ps.ammo", 43, 9999) et.gentity_set(clientNum, "ps.ammo", 44, 9999) et.gentity_set(clientNum, "ps.ammo", 45, 9999) et.gentity_set(clientNum, "ps.ammo", 47, 9999) et.gentity_set(clientNum, "ps.ammo", 48, 9999) et.gentity_set(clientNum, "ps.ammo", 49, 9999) end
  7. Like
    BECK got a reaction from Purple in Help-with-fun-settings   
    Copy that LUA script that purple posted above and place it in your silent directory (like 'weapons.lua' or something).   You'll need to update the script to factor in the silent-specific weapons (the second list he put), but basically you need an array with 51 items, either true or nil.   I think all should be "true" except the first one (WP_NONE).
     
    What this script does is just constantly set ammo to 9999 for any weapon or weapon modifications (e.g. scoped) that they currently have.
     
    Then add this to your config:
    set lua_modules "weapons.lua" Restart your server and test.
  8. Like
    BECK got a reaction from Flyingdutchman in Male/Female Variable Setting   
    +1 for this.  
  9. Like
    BECK reacted to alex in Thanks   
    We are happy with silEnT at ETForever.com , Thank you for working hard for free on this awesome mod and for having an open mind on feature requests. Donation sent.
  10. Like
    BECK got a reaction from Dragonji in play sound command (ATTN BECK)   
    heh, you just assume    Petty arguments aside, I can share it here for you or anyone else who wants to do custom sounds this way.  The advantage of this is that you can restrict certain sounds by shrubbot level.  We use this as a small benefit for regulars, vip regulars and members.
     
    In full disclosure, another member of IoW wrote these scripts, so I can't really help you if things aren't working or this is poorly written or wrong or causes your server to crash.  Use at your own risk!   All I know is, it works...
     
    First you need formatting.lua.  I think it was supposed to be a general purpose utility script that is shared by other scripts.
    function makeDisplayString(text, color, length, alignment) -- Initialize display string local displayString -- Get the display length of the text local textDisplayLength = displayLength(text) -- If the text display length fits in the desired display length if textDisplayLength <= length then -- Create enough padding to make the text the correct length for display local padding = "" for i = 1, length - textDisplayLength do padding = padding .. ' ' end -- If alignment is set to centered if alignment == "center" and string.len(padding) >= 2 then -- Find the middle of the padding and put each half on one side of the string local paddingSplitPoint = math.floor(string.len(padding) / 2) displayString = string.sub(padding, 1, paddingSplitPoint) .. text .. string.sub(padding, paddingSplitPoint + 1) -- Otherwise, if alignment was set to right elseif alignment == "right" then -- Put the padding at the beginning of the string displayString = padding .. text else -- Otherwise add the padding to the end of the string (left aligned) displayString = text .. padding end -- If the text is too big to fit in the desired display length else -- If the display length was specified as a very low number (so can't display the text properly) if length <= 3 then -- Fill the display length with dots displayString = "" for i = 1, length do displayString = displayString .. '.' end -- Otherwise, the display length has enough space to show part of the text else -- Create a table to hold parts of the text (chunks beginning with a color code [if possible]) local textTable = {} -- Split up the text into color coded pieces until there is no more text local moreText = true while moreText do -- Try to find the first occurence of a color code local firstColorCodeLocation = string.find(text, "%^[^%^]") -- Initialize text part local textPart -- If there are no color codes in the text if not firstColorCodeLocation then -- Set the text part to the entire text and specify that there is no more text to add textPart = text moreText = false -- Otherwise, a color code was found else -- If the first color code is not at the beginning of the text if firstColorCodeLocation > 1 then -- Set the text part to the text leading up to the first color code textPart = string.sub(text, 1, firstColorCodeLocation - 1) -- Otherwise, the first color code is at the beginning of the text else -- Attempt to find the second color code local secondColorCodeLocation = string.find(text, "%^[^%^]", firstColorCodeLocation + 2) -- If the second color code is found if secondColorCodeLocation then -- Set the text part to be the text leading up to the second color code (including the first one) textPart = string.sub(text, 1, secondColorCodeLocation - 1) else -- Otherwise, set the text part to the entire remaining text and specify that there is no more text to add textPart = text moreText = false end end -- After determining a text part for the table remove that part from the text text = string.sub(text, string.len(textPart) + 1) end -- Add the text part to the table table.insert(textTable, textPart) end -- Set the amount of text needed to fill the desired display length (not including the ellipses) local displayTextNeeded = length - 3 -- Initialize the display string that will hold the display text displayString = "" -- While more text is needed while displayTextNeeded > 0 do -- Get the next text part from the table and remove the table entry for it local nextTextPart = textTable[1] table.remove(textTable, 1) -- If the text part begins with a color code if string.find(nextTextPart, "%^[^%^]") then -- Get the amount of text needed from the text part (or as much as possible) and update the text needed nextTextPart = string.sub(nextTextPart, 1, displayTextNeeded + 2) displayTextNeeded = displayTextNeeded - (string.len(nextTextPart) - 2) -- Otherwise, there is no color code in the text part else -- Get the amount of text needed from the text part (or as much as possible) and update the text needed nextTextPart = string.sub(nextTextPart, 1, displayTextNeeded) displayTextNeeded = displayTextNeeded - string.len(nextTextPart) end -- Add the text part to the display string displayString = displayString .. nextTextPart end -- Now that no more text is needed, add ellipses to show that it didn't fit displayString = displayString .. colorString("...", color) end end displayString = colorString(displayString, color) -- return the formatted string return displayString end function colorString(text, color) if color then -- If text does not begin with a color code if string.find(text, "%^[^%^]") ~= 1 then -- Add the color code to the beginning of the text text = '^' .. color .. text end end -- Return text with color code return text end function displayLength(text) -- Initialize the display length to the full length of the text local textDisplayLength = string.len(text) -- Loop through each color code for colorCode in string.gmatch(text, "%^[^%^]") do -- Subtract the color code characters from the display length textDisplayLength = textDisplayLength - string.len(colorCode) end return textDisplayLength end function makeLine(character, length) -- Initialize the line string local line = "" -- Add characters until the string is as long as specified for i = 1, length do line = line .. character end -- Return the print line return line end function trim(s, side) -- Initialize the number of spaces removed to 0 local i = 0 -- If the right side was not specified if side ~= 'r' then -- While there are spaces at the beginning of the string while string.find(s, "^%s") do -- Remove the first space and increment counter s = string.gsub(s, "^%s", "") i = i + 1 end end -- If the left side was not specified if side ~= 'l' then -- While there are spaces at the end of the string while string.find(s, "%s$") do -- Remove the last space and increment counter s = string.gsub(s, "%s$", "") i = i + 1 end end -- Return the trimmed string and the amount of spaces removed return s, i end function printETLine(clientNum, text) -- Print the specified text into the specified client's console if clientNum ~= "[i]" then et.trap_SendServerCommand(clientNum, 'print "' .. text .. '\n"') else et.G_Print( text ) end end function printMessage(clientNum, text, messageType) -- Print the specified text into the specified client's console if clientNum ~= "[i]" then et.trap_SendServerCommand(clientNum, messageType .. ' "' .. text .. '"') else et.G_Print( text ) end end Then playsound.lua contains the command implementation
    require("formatting") -- Initialize a table to hold all possible sounds soundTable = {} -- Initialize a table to hold all players playsound cvar values playsoundCvarTable = {} function et_InitGame(levelTime, randomSeed, restart) -- Read sounds into soundTable local configFile, length = et.trap_FS_FOpenFile("playsound.cfg", et.FS_READ) -- If there were no errors opening the file if length ~= -1 then -- Read data from config file and close it local soundData = et.trap_FS_Read(configFile, length) et.trap_FS_FCloseFile(configFile) -- For each sound block in config file for soundBlock in string.gmatch(soundData, "[%w%-_]+[%s\n\r]+%b{}") do -- Get the sound command name local sound = string.match(soundBlock, "[%w%-_]+") -- Initialize parameter table for the sound command local soundParameterTable = {} -- Get level required from the sound block soundParameterTable["level"] = tonumber(string.sub(string.match(soundBlock, "level:[%d_]+"), 7)) -- Get a list of sound filenames from the sound block local soundFilenameList = {} for soundFilenameLine in string.gmatch(soundBlock, "sound:[%w%-_]+.wav") do local soundFilename = string.sub(soundFilenameLine, 7) table.insert(soundFilenameList, soundFilename) end soundParameterTable["sounds"] = soundFilenameList -- Add the sound parameters to the sound table soundTable[string.lower(sound)] = soundParameterTable end end end function et_CvarValue(clientNum, cvar, value) -- Add the cvar value to the script cvar table playsoundCvarTable[clientNum][cvar] = value end function et_ClientConnect(clientNum, firstTime, isBot) -- Querry server to get cvar value et.G_QueryClientCvar(clientNum, "playsound_method") -- Initialize the playsound_method cvar to nil since we do not know the value yet local clientCvarValueTable = {} -- Add client to the cvar table playsoundCvarTable[clientNum] = clientCvarValueTable -- Return nil to indicate that the player was not rejected by this function return nil end function et_ClientDisconnect(clientNum) -- Remove the player from the playsound cvar table playsoundCvarTable[clientNum] = nil end function et_ConsoleCommand(command) -- If client executed play command from console if string.lower(et.trap_Argv(0)) == "play" then -- If there were at least 3 parameters (including command name) if et.trap_Argc() >= 3 then -- Get client's admin level local clientNum=0 local clientLevel=0 if et.trap_Argv(1) == "[i]" then -- When CONSOLE executes this command, there is no clientNum. So we force the value to 50 -- Avoids a server crash, which is always good clientLevel = 50 else clientNum = et.trap_Argv(1) clientLevel = et.G_shrubbot_level(clientNum) end -- Get sound client passed as a parameter local sound = et.trap_Argv(2) -- Get the parameter table for the requested sound local soundParameterTable = soundTable[string.lower(sound)] -- If the sound exists if soundParameterTable then -- Get the level required to play the sound local level = soundParameterTable["level"] -- If the client has high enough level if clientLevel >= level then -- Choose a random sound from the parameters local soundFilename = soundParameterTable["sounds"][math.random(# soundParameterTable["sounds"])] -- -- Play the sound -- local soundPath = "sound/playsound/" .. soundFilename -- -- et.trap_SendConsoleCommand(et.EXEC_NOW, soundCommand) -- et.G_globalSound(soundPath) -- Loop through the clients and play sound based on their cvar playsound_method for slot, clientCvarValueTable in pairs(playsoundCvarTable) do local playsoundMethod = clientCvarValueTable["playsound_method"] or "sound" if playsoundMethod == "sound" then -- Play the sound for the client local soundPath = "sound/playsound/" .. soundFilename local soundIndex = et.G_SoundIndex(soundPath) et.G_ClientSound(slot, soundIndex) end if playsoundMethod == "text" then local soundText = soundParameterTable["text"] -- Send message to the client showing the text version of the sound command printETLine(slot, soundText) printETLine(slot, "test") end end else -- Otherwise warn client that they do not have high enough level printETLine(clientNum, "^oplay: ^7Permission denied") end else -- Otherwise inform client that the sound doesn't exist printETLine(clientNum, "^oplay: ^7The sound you specified does not exist") end else -- Otherwise inform client that they need to specify a sound name printETLine(clientNum, "^oplay: ^7You must specify a sound name") end -- Return 1 to indicate that the command was handled by this function return 1 end if string.lower(et.trap_Argv(0)) == "listsounds" then -- Initialize display variables local columnSeparator = " " local lineCharacter = '-' local borderColor = '9' local textColor = 'f' local columnWidth = 12 local numberColumns = 6 -- Get client's admin level local clientNum=0 local clientLevel=0 if et.trap_Argv(1) == "[i]" then -- When CONSOLE executes this command, there is no clientNum. So we force the value to 50 -- Avoids a server crash, which is always good clientLevel = 50 else clientNum = et.trap_Argv(1) clientLevel = et.G_shrubbot_level(clientNum) end -- Create a table to hold sounds available to the client local playerSoundTable = {} -- For each sound in the sound table for sound, parameterTable in pairs(soundTable) do -- If the client has high enough level if clientLevel >= parameterTable['level'] then -- Add sound to player sound table table.insert(playerSoundTable, sound) end end -- Sort player sound table in alphebetical order table.sort(playerSoundTable) -- Get number of characters that would be removed from the trimmed separator local trimmedSeparator, charactersRemoved = trim(columnSeparator) -- Determine line length based on number of columns, column width, and the separator display length local lineLength = (columnWidth * numberColumns) + (displayLength(columnSeparator) * (numberColumns + 1)) - charactersRemoved -- Print a line to act as the top border of the chart -- printETLine(clientNum, colorString(makeLine(lineCharacter, lineLength), borderColor)) -- While there are sounds in the player sound table while # playerSoundTable > 0 do -- Initialize line holding sound names local soundsLine = colorString(trim(columnSeparator, 'l'), borderColor) -- For each column for i = 1, numberColumns do -- Add the sound from the beginning of the list soundsLine = soundsLine .. makeDisplayString(playerSoundTable[1] or '', textColor, columnWidth, "left") -- If this is not the last column if i < numberColumns then -- Add a separator (column border) soundsLine = soundsLine .. colorString(columnSeparator, borderColor) else -- Otherwise add a separator with the right side trimmed soundsLine = soundsLine .. colorString(trim(columnSeparator, 'r'), borderColor) end -- Remove first sound from the beginning of the table table.remove(playerSoundTable, 1) end -- Print the sound line followed by a border line printETLine(clientNum, soundsLine) -- printETLine(clientNum, colorString(makeLine(lineCharacter, lineLength), borderColor)) end -- Return 1 to indicate that the command was handled by this function return 1 end -- Return 0 to pass any command for standard et processing return 0 end There is some stuff in here about having clients opt out of the sounds, but I don't think it was ever finished nor does it work AFAIK.    But take them as-is if you like.
     
    Next, the format of the playsound.cfg file is this:
    wewin { level:1 sound:the_game.wav } ... So you've got the command (as in !play wewin), the minimum shrubbot level required to use the sound (note all higher levels can use it), then the sound file name itself.   The sound file must be in 'sound/playsound/'  in your pk3 file, or else you can change the path coded in the playsound.lua file.  But this way, you can just edit playsound.cfg to add your sounds, the command string and level required to run it.   No end to the amount of sounds you can have.
     
    Next, define the commands in your shrubbot.cfg file:
    [command] command = ^bplay exec = play [i] [1] desc = Play a sound syntax = levels = 0 1 2 3 4 5 [command] command = ^blistsounds exec = listsounds [i] desc = List all sounds syntax = levels = 0 1 2 3 4 5 Finally, be sure to include the LUA scripts in your et config files:
    set lua_modules "playsound.lua"
  11. Like
    BECK got a reaction from Dragonji in New section in Wiki for creting custom commands   
    This is a great idea.  I can provide a simple example of a shrubbot command working with LUA - we have a bunch of working scripts that use this method.   You can use this if you want.
     
     
     
    For the purposes of this example, the command is mycommand.   It will be executed when the uses enters !mycommand in the console, assuming that player has been assigned level 2 or higher shrubbot level.
     
    1. Create your command in the shrubbot file.   Open your shrubbot.cfg file (in silent\database directory) and add the following block:
    [command] command = mycommand exec = mycommand [i] desc = Does something cool for people over level 2 syntax = levels = 2 3 4 5 2.  Create a LUA file in your silent directory on the server.  Call it mycommand.lua (or whatever name you want to give it).   Begin with the following stub:
    function et_ConsoleCommand(command) -- if the user types !mycommand in the console if et.trap_Argv(0) == "mycommand" then -- Do your custom processing here return 1 -- Tells silEnT that this method handled this command end return 0 -- Tells silEnT that this file did not handle this command end 3. Update your server config to load the LUA file.   Add or modify the following server var (lua_modules):
    set lua_modules "mycommand.lua" 4. Restart your server.  Assuming you are shrubbot level 2 or higher, !mycommand will execute and do cool stuff.
  12. Like
    BECK got a reaction from clan DIABOLIK in New section in Wiki for creting custom commands   
    This is a great idea.  I can provide a simple example of a shrubbot command working with LUA - we have a bunch of working scripts that use this method.   You can use this if you want.
     
     
     
    For the purposes of this example, the command is mycommand.   It will be executed when the uses enters !mycommand in the console, assuming that player has been assigned level 2 or higher shrubbot level.
     
    1. Create your command in the shrubbot file.   Open your shrubbot.cfg file (in silent\database directory) and add the following block:
    [command] command = mycommand exec = mycommand [i] desc = Does something cool for people over level 2 syntax = levels = 2 3 4 5 2.  Create a LUA file in your silent directory on the server.  Call it mycommand.lua (or whatever name you want to give it).   Begin with the following stub:
    function et_ConsoleCommand(command) -- if the user types !mycommand in the console if et.trap_Argv(0) == "mycommand" then -- Do your custom processing here return 1 -- Tells silEnT that this method handled this command end return 0 -- Tells silEnT that this file did not handle this command end 3. Update your server config to load the LUA file.   Add or modify the following server var (lua_modules):
    set lua_modules "mycommand.lua" 4. Restart your server.  Assuming you are shrubbot level 2 or higher, !mycommand will execute and do cool stuff.
  13. Like
    BECK got a reaction from hellreturn in New section in Wiki for creting custom commands   
    This is a great idea.  I can provide a simple example of a shrubbot command working with LUA - we have a bunch of working scripts that use this method.   You can use this if you want.
     
     
     
    For the purposes of this example, the command is mycommand.   It will be executed when the uses enters !mycommand in the console, assuming that player has been assigned level 2 or higher shrubbot level.
     
    1. Create your command in the shrubbot file.   Open your shrubbot.cfg file (in silent\database directory) and add the following block:
    [command] command = mycommand exec = mycommand [i] desc = Does something cool for people over level 2 syntax = levels = 2 3 4 5 2.  Create a LUA file in your silent directory on the server.  Call it mycommand.lua (or whatever name you want to give it).   Begin with the following stub:
    function et_ConsoleCommand(command) -- if the user types !mycommand in the console if et.trap_Argv(0) == "mycommand" then -- Do your custom processing here return 1 -- Tells silEnT that this method handled this command end return 0 -- Tells silEnT that this file did not handle this command end 3. Update your server config to load the LUA file.   Add or modify the following server var (lua_modules):
    set lua_modules "mycommand.lua" 4. Restart your server.  Assuming you are shrubbot level 2 or higher, !mycommand will execute and do cool stuff.
  14. Like
    BECK got a reaction from gaoesa in New section in Wiki for creting custom commands   
    This is a great idea.  I can provide a simple example of a shrubbot command working with LUA - we have a bunch of working scripts that use this method.   You can use this if you want.
     
     
     
    For the purposes of this example, the command is mycommand.   It will be executed when the uses enters !mycommand in the console, assuming that player has been assigned level 2 or higher shrubbot level.
     
    1. Create your command in the shrubbot file.   Open your shrubbot.cfg file (in silent\database directory) and add the following block:
    [command] command = mycommand exec = mycommand [i] desc = Does something cool for people over level 2 syntax = levels = 2 3 4 5 2.  Create a LUA file in your silent directory on the server.  Call it mycommand.lua (or whatever name you want to give it).   Begin with the following stub:
    function et_ConsoleCommand(command) -- if the user types !mycommand in the console if et.trap_Argv(0) == "mycommand" then -- Do your custom processing here return 1 -- Tells silEnT that this method handled this command end return 0 -- Tells silEnT that this file did not handle this command end 3. Update your server config to load the LUA file.   Add or modify the following server var (lua_modules):
    set lua_modules "mycommand.lua" 4. Restart your server.  Assuming you are shrubbot level 2 or higher, !mycommand will execute and do cool stuff.
  15. Like
    BECK got a reaction from clan DIABOLIK in Optional Pk3s   
    I think this is already possible.   On our server we have custom weapon sounds and different skins and mine markers --- we put the PK3 files in the etmain folder on the server.   If you have the same files in your own etmain folder on your PC, you will be able to use them at our server, but it doesn't effect your experience at other servers.   It works for us at least --- so no one is required to have them, and if they do have them they will be able to experience them and there are no forced downloads.    In my experience, anything in silent folder on the server must be in the silent folder on the client, since we have sv_pure = 1, so clients will have to download customizations.   But this isn't the case for stuff we have in etmain, with the exception of custom maps.  
  16. Like
    BECK got a reaction from Zelly in Optional Pk3s   
    I think this is already possible.   On our server we have custom weapon sounds and different skins and mine markers --- we put the PK3 files in the etmain folder on the server.   If you have the same files in your own etmain folder on your PC, you will be able to use them at our server, but it doesn't effect your experience at other servers.   It works for us at least --- so no one is required to have them, and if they do have them they will be able to experience them and there are no forced downloads.    In my experience, anything in silent folder on the server must be in the silent folder on the client, since we have sv_pure = 1, so clients will have to download customizations.   But this isn't the case for stuff we have in etmain, with the exception of custom maps.  
  17. Like
    BECK reacted to Dookie in all soldiers during panzerwar   
    Hi, I was thinking if its maybe possible that when you turn on panzerwar, all players are moved into soldier class? Becuase from what it is now, you can join medic class and play panzer and then u go to 156hp or so and then direct hit doesnt kill you, and also another thing if youve been hit you are healing yourself with that 3hp's every second and so on. So I think it would be cooler that when panzerwar gets turned on we all get moved to soldier class. I hope thats possible. Same goes for sniperwar i guess!
     
    Thanks!
  18. Like
    BECK got a reaction from TheSilencerPL in compulsive or user-owned fireteams   
    Fireteams are extremely useful in silEnT.    They provide health, location and class information for your team.    For any objective-oriented players, like myself, this information is helpful for coordinating a good attack/defense.  
     
    Now - the feature request - can we add another type of firetream - a user fireteam?   what I mean is - nothing annoys me more than when I send a request to join, the person rejects the request.   Some say they don't like the extra stuff in their hud.   Okay, fine.   But now my goal of keeping in touch with my team is now diminished because this person stubbornly refuses to join.   I don't care about using it for chat, I just like the information it provides.  I'm willing to sacrifice a small portion of my screen to providing information useful to me to play good objective-oriented and coordinated team work.
     
    I know the FT system is probably built into the core game, but is there a way we can re-use the information that the fireteam hud item provides, so that I can add whomever I want to my own list of players without them even having to be involved in it?   I suppose maybe its different than the fireteam, but could utilize some of the same framework?
     
    Does this make sense?  I hope you understand what I'm asking for.
     
    I guess this is what it boils down to:
     
    I want to use the powerful features of the fireteam to automatically add anyone on my team to it without their knowledge or consent.  And if fireteam isn't the right mechanism to do it, can we have something new that takes its place?
     
    Thanks for your consideration.
  19. Like
    BECK reacted to Dookie in Pistol spawn bug?   
    same thing ive got on my 082 server. Thought its me only...
  20. Like
    BECK got a reaction from Jhonny/Shinobi in !showtk   
    +1 for this!
  21. Like
    BECK reacted to Jhonny/Shinobi in !showtk   
    Hello,
     
    I was wondering if it would be possible to add a !showtk (list) to the commands. I think that this would be possible with lua script (no expierience), but I thought it would be also nice to have it in the mod it self.
     
    What does the cmd do ? Give the following info and sorting the player by the amount of tk that they have from high to low. So giving the admin immeadiatly an overview is someone is tk-bleeding.
     
     
    Slot  |        Name          |   Class    | Tks | TD given

    5      |     Jhonny/Shinobi |     MEDIC  |    5    | 418
    7       |        Etplayer       |            SOLDIER      |    2      | 206
     
     
     
    Saw this on the kernwaffe.de server ( nq mod) and thought the silent mod could use it also( I assume that it is copright free).
     
  22. Like
    BECK reacted to neks in custom user prompt   
    I'd like to see the ability to open a user prompt plugged to a custom command and send the result "custom_command user_input" to the console
     
    That would great flexibility to the usability of custom command in general
     
    Like public chat, except you have the ability to plug in your custom command instead of a static vsay.
     
    Edit: Maybe an custom messagemodeX where the message command is set server-wise?
     
    Hope it makes sense.
     
    thanks for sharing your thoughts on this.
     
    N
  23. Like
    BECK reacted to Zelly in what glauncher damage to use?   
    The problem your probably running into is flak jacket, ( 50% less explosive damage for people who have flak jacket )

    And most servers let that skill carry over to other classes too not just engineers, I have come to just disable flak jacket altogether as I don't think people should be just launched 50 feet when a grenade hits them directly.
     
    To toggle it for every class when level 4 engy is reached look here:
    http://mygamingtalk.com/wiki/index.php/Silent_Mod_Server_Cvar#g_skills
    and if you want to disable it altogether, which admittedly is a bit extreme:
    http://mygamingtalk.com/wiki/index.php/Silent_Mod_Server_Cvar#skill_engineer
  24. Like
    BECK reacted to Purple in Private message by shrubbot level   
    This is possible. It has already been done if i'm correct, Micha has a script around for it, I may also still have it. let me know if you still need it i can for sure get it for you
  25. Like
    BECK reacted to TheSilencerPL in Objective captured visual screen indicator   
    Implemented in the next version.
    We finally placed it near the dynamite counters.
×
×
  • Create New...