Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/27/14 in all areas

  1. You could make a custom command that sends you a private message. As an alternative.
    2 points
  2. 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?
    1 point
  3. ---------------------------------------------------------------------- -- 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
    1 point
  4. Dragonji

    Artillery - charge bar

    I remember it was requested in some topic but I couldn't find it so I just open a new one. Would be nice if it was possible to limit artillery callers spam, I mean to have options similar to g_weapons 8 (Fully restore Field Ops charge bar if airstrike is aborted) and 16 (Half restore Field Ops charge bar if airstrike is aborted) flags. So there are options to half or fully waste the amount of the player chargebar needed to call in an artillery when "Insufficient fire support" occurs.
    1 point
  5. cinco

    Artillery - charge bar

    http://mygamingtalk.com/forums/topic/2257-g-weapons-bitmask-16/ August 2012!! I'd forgotten that I did this video.
    1 point
  6. @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.
    1 point
×
×
  • Create New...