Jump to content

Chuckun

Members
  • Posts

    129
  • Joined

  • Last visited

  • Days Won

    8

Reputation Activity

  1. Like
    Chuckun reacted to BECK in Moving a Server to a New IP   
    I have a domain, that will be updated indeed.   I just don't know how favorite servers are saved in the game, in xfire or whatever other clients people use.   I would presume those store things as IPs, but perhaps not.
     
    Thanks for the tips.  I'll post some update in this thread when we do move and share my experiences.
  2. Like
    Chuckun reacted to Dragonji in Thousands of new ETPlayers ?   
    Good idea but its realisation is impossible due to the fact ET assets are proprietary so I doubt this app would be accepted in Google Play.
  3. Like
    Chuckun got a reaction from clan DIABOLIK in Moving a Server to a New IP   
    It's a bit late for that, but it would definitely be the best option for future.. Encourage people to use /connect yourdomain.com (or servername.yourdomain.com if you run multiple servers) and then you can change the IP whenever you want and as long as the (sub)domain points to the new IP, they'll go to the new IP
  4. Like
    Chuckun reacted to twiti in Moving a Server to a New IP   
    get a domain (~$10y)
  5. Like
    Chuckun got a reaction from NoGooD in Will this LUA work? (Novice needs help :P)   
    Thank you gaoesa and loudness!
     
    Although I like the simplicity of the PM idea, it's a bit sloppy for my taste (i'm just quite particular I guess), but I appreciate it's functionality..
     
    If anyone has a test server they could test the LUA on that would be handy (Moving the positive return into the scope of the IF clause as pointed out by loudness).. If not it will have to wait until I have time to do my first server setup
  6. Like
    Chuckun reacted to loudness in Will this LUA work? (Novice needs help :P)   
    ----------------------------------------------------------------------
    -- Filename: myguid.lua
    ----------------------------------------------------------------------
    -- MyGUID - Prints your silEnT GUID just like /cl_guid would for etkey based GUIDs.
    ----------------------------------------------------------------------
    -- Created by =F|A=Chuckun
    -- If you use it, please donate to our clan to help fund the servers
    -- Any amount will help!!
    -- Fearless-Assassins.com
    ----------------------------------------------------------------------
    -- For use with shrubbot, exec 'getmyguid'
    ----------------------------------------------------------------------

    description = "silEnT GUID Command"
    version = "1.0"   -- is not used in any function


    function et_InitGame(levelTime,randomSeed,restart)
        local modname = string.format("%s", description)
        et.G_Print(string.format("%s loaded\n", modname))
        et.RegisterModname(modname)
    end



    function et_ConsoleCommand(clientNum, command)
        if et.trap_Argv(0) == "getmyguid" then
               local guid = et.Info_ValueForKey(et.trap_GetUserinfo(playerID),"sil_guid")
               et.trap_SendServerCommand(clientNum, "print \"^osilEnT GUID: ^7"..guid.."\n")    return 1  ---return 1 here...if  not have getmyguid comand will be 0..unreconize comand 
       end
    end
     
     
    im begginer too...usualy i hunt logs for errors ....but i thik like this will work  
    gaoesa solution is better no lua
  7. Like
    Chuckun reacted to gaoesa in Will this LUA work? (Novice needs help :P)   
    You could make a custom command that sends you a private message. As an alternative.
  8. Like
    Chuckun got a reaction from hellreturn in Will this LUA work? (Novice needs help :P)   
    I know that typing [g] shows your silEnT GUID and typing it into fireteam chat whilst not in a fireteam will work to do it privately, but for absolute security, I wanted to make a custom command of !myguid so I made this LUA script.. Problem is I have never ever touched anything LUA or ET related, so I have no idea if this will even work and I have no means of testing it.. So I wonder if someone can tell me if I've done anything wrong, and/or if it will actually work?
    ---------------------------------------------------------------------- -- Filename: myguid.lua ---------------------------------------------------------------------- -- MyGUID - Prints your silEnT GUID just like /cl_guid would for etkey based GUIDs. ---------------------------------------------------------------------- -- Created by =F|A=Chuckun -- If you use it, please donate to our clan to help fund the servers -- Any amount will help!! -- Fearless-Assassins.com ---------------------------------------------------------------------- -- For use with shrubbot, exec 'getmyguid' ---------------------------------------------------------------------- description = "silEnT GUID Command" version = "1.0"    function et_InitGame(levelTime,randomSeed,restart)     local modname = string.format("%s", description)     et.G_Print(string.format("%s loaded\n", modname))     et.RegisterModname(modname) end function et_ConsoleCommand(command)     if et.trap_Argv(0) == "getmyguid" then         local userinfo = et.trap_GetUserinfo( playerID )         local guid     = et.Info_ValueForKey( userinfo, "sil_guid" )         et.trap_SendServerCommand(clientNum, "print \"^osilEnT GUID: ^7"..guid.."\n")     end     return 1 end Or perhaps there's an easier way to simply print the GUID within the command's exec line, with no need for any LUA mod?
  9. Like
    Chuckun reacted to Dragonji in Client Screen Capture (Silent Anti-Cheat)   
    @Chuckun
    N!tmod's got working SS system. The only downside of this is that the player might notice the screenshot of him has been taken because the game can lag for him during SS sending.
  10. Like
    Chuckun reacted to gaoesa in etpro and the silent anticheat?   
    Like solar and Dragonji already pointed out, ETPro sourcecode is not available. But I will add as a representative of the silEnT mod team, that even if ETPro source code would be available, there would be no motivation for the silEnT mod team to add features to it. If we would do anything with it, we would just look for things we could use to improve our mod.
  11. Like
    Chuckun got a reaction from Jhonny/Shinobi in Shortcuts   
    You mean how can you make !chicken etpl say "ETPlayer is a chicken!" ?
     
    If that is what you mean, I'm fairly sure you would need the command to be defined as follows:
    command = chicken exec = chat "[1?] is a chicken!" desc = Call someone chicken levels = 0 1 2 3 4 etc etcTo help you understand what the "[1?]" means - the 1 passes the 1st thing you type after !chicken, and the ? part tells silEnT MOD to look for a partial playername match..
     
    So you could go even further and change the command to this..
    command = insult exec = chat "[1?] is a [2]!" desc = Insult somebody levels = 0 1 2 3 4 etc etcAnd then do !insult etpl fool, and the server would then say "ETPlayer is a fool!"
     
    EDIT: I found this, it may help you: http://mygamingtalk.com/wiki/index.php/Silent_Shrubbot#shrubbot.cfg
  12. Like
    Chuckun got a reaction from gaoesa in Shortcuts   
    You mean how can you make !chicken etpl say "ETPlayer is a chicken!" ?
     
    If that is what you mean, I'm fairly sure you would need the command to be defined as follows:
    command = chicken exec = chat "[1?] is a chicken!" desc = Call someone chicken levels = 0 1 2 3 4 etc etcTo help you understand what the "[1?]" means - the 1 passes the 1st thing you type after !chicken, and the ? part tells silEnT MOD to look for a partial playername match..
     
    So you could go even further and change the command to this..
    command = insult exec = chat "[1?] is a [2]!" desc = Insult somebody levels = 0 1 2 3 4 etc etcAnd then do !insult etpl fool, and the server would then say "ETPlayer is a fool!"
     
    EDIT: I found this, it may help you: http://mygamingtalk.com/wiki/index.php/Silent_Shrubbot#shrubbot.cfg
  13. Like
    Chuckun got a reaction from hellreturn in g_shuffle_staytime or something?   
    I am requesting a new shuffle server cvar to prevent players from switching teams until after a predifined period of time..
     
    For example, g_shuffle_staytime 300 would prevent players from switching teams until 5 minutes after any shuffle (be it via shrubbot command or auto shuffle).
     
    This would be SO helpful.
     
    If this were to be implemented, it should not affect !putteam, as there are occasions where people DO need to move soon after a shuffle (if a player leaves for example), but dealing with this manually would be so much better than dealing with all the team stackers we have every day..
     
    Could it be implemented?
     
    If you need any extra infos I will be stalking so feel free to ask
  14. Like
    Chuckun got a reaction from ETsneak in disable all complaints   
    Great suggestion and thank you gaoesa!
  15. Like
    Chuckun reacted to gaoesa in disable all complaints   
    Added to the next version as g_disableComplaints flag 32.
  16. Like
    Chuckun reacted to ETsneak in disable all complaints   
    g_disableComplaints
     
    I suggest adding another option here to disable complaint popups ENTIRELY. Seriously, who complains about TK in 2013 ? Only trolls and nubs.
  17. Like
    Chuckun reacted to clan DIABOLIK in BACKUPS   
    Thanks a lot @all for your support, nice from you  
     
     
    I'm afraid it is the case, they just propose to make a new command for another VPS, I learn here the term 'foolish' ...
    This stupid company is: http://qualityserv.fr/   I remember when I was at http://dediserverhosting.com/ it was zero problem !
     
     
    I found the courage, now I tune a @home server  to get the same settings as the original one, g_mode+g_weapons+g_misc make 90% of the server; cool !
    In few days, a good BACKUP   and will upload on another VPS
     
    Bye all !
  18. Like
    Chuckun got a reaction from Jhonny/Shinobi in g_shuffle_staytime or something?   
    I am requesting a new shuffle server cvar to prevent players from switching teams until after a predifined period of time..
     
    For example, g_shuffle_staytime 300 would prevent players from switching teams until 5 minutes after any shuffle (be it via shrubbot command or auto shuffle).
     
    This would be SO helpful.
     
    If this were to be implemented, it should not affect !putteam, as there are occasions where people DO need to move soon after a shuffle (if a player leaves for example), but dealing with this manually would be so much better than dealing with all the team stackers we have every day..
     
    Could it be implemented?
     
    If you need any extra infos I will be stalking so feel free to ask
  19. Like
    Chuckun reacted to Sol in g_shuffle_staytime or something?   
    MINIMAL_LEVEL_TOEXECUTE = 20 -- minimal level to execute this command SHUFFLE_COMMAND = "!shuffle" -- shuffle command SHUFFLE_AFTERTIME = 5*60 -- 5min Client = { } function et_InitGame( levelTime, randomSeed, restart ) maxclients = et.trap_Cvar_Get( "sv_maxclients" ) end function et_ClientCommand( num, cmd ) local arg0 = string.lower(cmd) local arg1 = string.lower(et.trap_Argv(1)) if et.G_shrubbot_level( num ) >= MINIMAL_LEVEL_TOEXECUTE and arg0 == SHUFFLE_COMMAND or arg1 == SHUFFLE_COMMAND then StartTime = os.time() for i = 0, maxclients - 1 do local team = et.gentity_get(i, "sess.sessionTeam") if team ~= 3 then Client[i] = team end end return true -- let execute it end if arg0 == "team" and StartTime ~= nil then if arg1 == "b" then if os.time() >= (StartTime + SHUFFLE_AFTERTIME) and Client[num] == 1 then return false end elseif arg1 == "r" then if os.time() >= (StartTime + SHUFFLE_AFTERTIME) and Client[num] == 2 then return false end end end end It is just concept but it should works, in this case they won't be able to change to ->spec-> another team too
  20. Like
    Chuckun got a reaction from Rel!c in Muted person unable to recieve private messages   
    If someone constantly evades consiquences by removing silent.dat / etkey then simply IP ban him. Nothing else for it >_< People like that don't deserve to be allowed to play on your server >_<
  21. Like
    Chuckun got a reaction from hellreturn in Muted person unable to recieve private messages   
    If someone constantly evades consiquences by removing silent.dat / etkey then simply IP ban him. Nothing else for it >_< People like that don't deserve to be allowed to play on your server >_<
  22. Like
    Chuckun reacted to Dragonji in EA titles on Humble Bundle   
    "Pay what you want for epic games on Origin. Support charity."
     
    https://www.humblebundle.com/
     
    8 triumphant games. Pay what you want and get the terrifying sci-fi horror third person shooter Dead Space 3; the original bone-chilling horror shooter Dead Space; the intense action-packed supersoldier shooter Crysis 2 Maximum Edition; the high speed open-world crash happy racer Burnout Paradise: The Ultimate Box; the authentic modern warfare sim Medal of Honor; and the first person parkour thrill ride Mirror's Edge. Pay over the average and receive the beloved life sim The Sims 3 (along with two expansion packs in The Sims 3 Starter Pack) and the unrivaled military shooter Battlefield 3.
     
    Fire it up on Origin. Buying the Humble Origin Bundle gets you the games to play on Windows through Origin (system requirements here), with The Sims 3 also available on Mac! Electronic Arts has also provided Steam keys for some of the games (full list here)!
     
    Pay what you want. On their own, all these mind-blowing titles would cost about $215, but we're letting you name your price! Pay any price to get soundtracks for The Sims 3 and Battlefield 3. A purchase of $1 or more gets you Origin* keys for all the games, and you can also get Steam keys for Dead Space, Crysis 2 Maximum Edition, Burnout Paradise: The Ultimate Box, Medal of Honor, and Mirror's Edge! Beat the average to also get The Sims 3, two expansion packs in The Sims 3 Starter Pack, and Battlefield 3.
     
    This offer ends on 28.08.2013 (if I am correct )
  23. Like
    Chuckun reacted to BECK in avatars   
    If you do it, I like the idea of providing a standard pack of ones to choose from and allowing admins to supplement, even allow certain shrubbot levels access to certain images etc....
     
    Otherwise -- gonna be a lot of penises running around the map LOL.
  24. Like
    Chuckun reacted to Quovadis in Permanent Bans and Shownormals   
    Rather than using r_shownormals , why not impletementing a total new function linked to shoutcaster function ( which is already protected enough ) . Could add some new code that would create a red or blue silhouette to let you spot wallhackers.
     
    Jaymod implemented a (shity) glow function so in theory it would be possible.
  25. Like
    Chuckun reacted to Geo in Rifle Grenades   
    Already use those settings using player limits.
     
     
     
    Yes. 
     
     
     
    I wouldn't of posted if nobody was considering using it. It is a frequent question asked by players on the server, mainly etpro and I would like at least the option for a choice.
×
×
  • Create New...