Jump to content

Purple

Members
  • Posts

    148
  • Joined

  • Last visited

  • Days Won

    28

Reputation Activity

  1. Like
    Purple got a reaction from BettyBoop in Silent mod (a few problems)   
    I'm not quiet sure what you're wanting but if im correct you're wanting unlimited rifle grenades?
     
    although you could do something like this in lua, I dont know the weapon# for axis rnade at the moment.
    function et_InitGame( levelTime, randomSeed, restart ) et.RegisterModname("Rnade ammo") end function et_ClientSpawn( clientNum, revived, teamChange, restoreHealth ) et.gentity_set(clientNum, "ps.ammo", 42, 30) --allies rnade end
  2. Like
    Purple got a reaction from Jhonny/Shinobi in ET Server Series!   
    I've started on a basic ET server configuration series for people. I will continue to update this topic with more and more videos
     
    (p.s sorry for the low quality videos going to use something else for recording <3)
     
     
    $part 1
    https://www.youtube.com/watch?v=ewwoq1ZUo-Y&feature=youtu.be
  3. Like
    Purple got a reaction from twt_thunder in ET Server Series!   
    I've started on a basic ET server configuration series for people. I will continue to update this topic with more and more videos
     
    (p.s sorry for the low quality videos going to use something else for recording <3)
     
     
    $part 1
    https://www.youtube.com/watch?v=ewwoq1ZUo-Y&feature=youtu.be
  4. Like
    Purple got a reaction from clan DIABOLIK in ET Server Series!   
    I've started on a basic ET server configuration series for people. I will continue to update this topic with more and more videos
     
    (p.s sorry for the low quality videos going to use something else for recording <3)
     
     
    $part 1
    https://www.youtube.com/watch?v=ewwoq1ZUo-Y&feature=youtu.be
  5. Like
    Purple got a reaction from gaoesa in ET Server Series!   
    I've started on a basic ET server configuration series for people. I will continue to update this topic with more and more videos
     
    (p.s sorry for the low quality videos going to use something else for recording <3)
     
     
    $part 1
    https://www.youtube.com/watch?v=ewwoq1ZUo-Y&feature=youtu.be
  6. Like
    Purple got a reaction from clan DIABOLIK in Do you need help? Anything server related   
    I got a few hours of free time if any of you need help i'll be screen sharing on join.me you can come on in and ask your questions and ill help you out the best i can ;D
     
    https://join.me/551-504-648
  7. Like
    Purple got a reaction from hellreturn in Getting chat logs   
    Here i made something up real quick should work haven't tested it though. 
    --[[ Chat logger v.1 by Purple (DRi*VJ*) 8/27/2014 Info: All logs are logged in a seperate file including PM, regular chat and team chat. They will be in your silent directory. If you would like to organize them put them into a folder called anything and change pm_logs = "pm_logs.txt" say_logs = "say_logs.txt" say_team_logs = "say_team_logs.txt" To your directory destination e.g. pm_logs = "logs/pm_logs.txt" Note: The file names must be the same in order for this to work. --]] pm_logs = "pm_logs.txt" say_logs = "say_logs.txt" say_team_logs = "say_team_logs.txt" date_fmt = "%Y-%m-%d, %H:%M:%S" version = "0.1" temp_name = {} c_Name = {} temp_sguid = {} temp_ip = {} pm = {} say = {} say_team = {} function et_InitGame(levelTime, randomSeed, restart) et.RegisterModname("pm_logs.lua "..version.." "..et.FindSelf()) maxclients = tonumber(et.trap_Cvar_Get("sv_maxclients")) for i = 0, maxclients - 1 do pm[i] = "" say[i] = "" say_team[i] = "" end end function et_ClientBegin( clientNum ) temp_name[clientNum] = et.Info_ValueForKey( et.trap_GetUserinfo( clientNum ), "name" ) temp_sguid[clientNum] = et.Info_ValueForKey( et.trap_GetUserinfo( clientNum ), "sil_guid" ) temp_ip[clientNum] = et.Info_ValueForKey( et.trap_GetUserinfo( clientNum ), "ip" ) c_Name[clientNum] = et.Q_CleanStr( temp_name[clientNum] ) end function et_ClientCommand(clientNum, command) if command == "m" then if et.trap_Argc() > 1 then for i = 2, et.trap_Argc() - 1, 1 do pm[clientNum] = pm[clientNum] .. et.trap_Argv(i) .. " " end local sender = string.lower(et.trap_Argv(1)) info = os.date("%x %I:%M:%S%p") .. " | IP: [" .. temp_ip[clientNum] .. "] | From: "..playerName(clientNum).." | To: " .. sender .. " | Pm: [ " .. pm[clientNum] .. "] " .."\n" fd,len = et.trap_FS_FOpenFile(pm_logs, et.FS_APPEND) count = et.trap_FS_Write(info, string.len(info), fd) et.trap_FS_FCloseFile(fd) fd = nil for i = 0, maxclients - 1 do pm[i] = "" end end return 0 end if command == "say" then if et.trap_Argc() > 1 then for i = 1, et.trap_Argc() - 1, 1 do say[clientNum] = say[clientNum] .. et.trap_Argv(i) .. " " end info = os.date("%x %I:%M:%S%p") .. " | IP: [" .. temp_ip[clientNum] .. "] | Player: "..playerName(clientNum).." | say: [ " .. say[clientNum] .. "] " .."\n" fd,len = et.trap_FS_FOpenFile(say_logs, et.FS_APPEND) count = et.trap_FS_Write(info, string.len(info), fd) et.trap_FS_FCloseFile(fd) fd = nil for i = 0, maxclients - 1 do say[i] = "" end end return 0 end if command == "say_team" then if et.trap_Argc() > 1 then for i = 1, et.trap_Argc() - 1, 1 do say_team[clientNum] = say_team[clientNum] .. et.trap_Argv(i) .. " " end info = os.date("%x %I:%M:%S%p") .. " | IP: [" .. temp_ip[clientNum] .. "] | Player: "..playerName(clientNum).." | say_team: [ " .. say_team[clientNum] .. "] " .."\n" fd,len = et.trap_FS_FOpenFile(say_team_logs, et.FS_APPEND) count = et.trap_FS_Write(info, string.len(info), fd) et.trap_FS_FCloseFile(fd) fd = nil for i = 0, maxclients - 1 do say_team[i] = "" end end return 0 end return 0 end function playerName(id) local name = et.Info_ValueForKey(et.trap_GetUserinfo(id), "name") if name == "" then return "*unknown*" end return name end
  8. Like
    Purple got a reaction from hellreturn in Getting chat logs   
    That's pretty much what i did with lua my self for pm logging. I log my pms via date/ip/name/name/message and i use "|" as a seperater and then just remove some stuff from the string and print it out via php.
     
    Heres an example of how i have it setup.
     
    http://gyazo.com/63a8518e10d3b031895fae08913aae99
     
    (very basic setup atm just started working on it a few nights ago will add visuals and tables to make it look cleaner) 
  9. Like
    Purple got a reaction from Ray in Getting chat logs   
    Or if you want to make it 3000000000000000x easier just download etsnitch and it auto parses your logs. :*
  10. Like
    Purple got a reaction from TheSilencerPL in =DRi=Elite Noobs [Jaymod/Silent]   
    Updated to silent 0.8.2!
  11. Like
    Purple reacted to Rel!c in silEnT mod release 0.8.2   
    working hard for our pleasure.. tnx of for that !
     
    Is there any update on the anticheat detection? Been noticing a few undetected cheats on server where its obvious that they cheat.
  12. Like
    Purple got a reaction from hellreturn in !pistolwars ?   
    Oh sorry didn't know. I'll upload a good 20+ in the next few days. Thanks.
  13. Like
    Purple got a reaction from Jhonny/Shinobi in Minor suggestions on !finger and !ban   
    This is possible with lua for sure. If you are in need of this script still let me know i could write it up.
  14. Like
    Purple got a reaction from BECK 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
  15. Like
    Purple got a reaction from clan DIABOLIK in Regarding ET Sever (NewGirlsPower)   
    If i'm correct Frank owns it. If i'm correct again he is shutting (has shutdown?) the clan and it's servers according to his facebook page.
  16. Like
    Purple got a reaction from Ray in Scripts and custom fun commands.   
    Pretty old and hate the bump the topic, but there are multiple ways of making custom commands either by lua or by shrubbot. I could make some tutorials for users here soon, but for the meantime i'm a bit busy if you have any suggestions of things you'd like to see feel free to send me a pm.
×
×
  • Create New...