Jump to content
DarkRP Rules Updated (4/28/2024) ×

Leaderboard

Popular Content

Showing content with the highest reputation on 06/08/2021 in all areas

  1. The Brick After hundreds of thousands of requests from 9 trillion unique members The most requested feature since "please just shut down MRP and end this all" This update was sponsored by B R I C K S O C Weapon Balancing REMEMBER: Guns kill people. These changes were sponsored by @Jake and @Ozzy's request Guns may need further tweaking, however, there is no way in hell i'm going to accept Ozzy's sandbox values :^( Assault Rifles Army's AR-15 Removed ACOG sight Donator's AEK It is already a nerfed variant of all other AKs, but Jake wanted a significant nerf. I disagreed and met him at the middle. Output damage lowered to 37 from 40. Sub Machines Gun Global Weapons affected: G36C, MP5, P90, Veresk, VSS, FMG-9, MP40, MP5A5, MP5A4 Removed inconsistencies between SMGs All SMGs with damage under 25 (4 shot value) have been buffed onto 25, ones found at over 25 were given a slight further buff (1-2 damage per shot) Lowered the spread cooldown significantly. Stopping your fire will almost immediately reset your accumulated spread Battle Rifles Global Weapons affected: SKS-D, FN FAL, Scar Heavy, G3A3 Lowered aimspread significantly (22%) Cut down max spread incremental value (33%) to be on-par with that of an AK, however, much more recoil will be present. Lowered Recoil significantly - this value will remain somewhat higher than an AR (35%) AFSOC NPC My apologies Jake Confirmed the existence and functionality of this NPC Word Scrambler NOW AN UNSCRAMBLER :^) Difficulty go >:)
    6 points
  2. I feel a lot of this could apply to Horse and we unbanned him. In order to judge if he has changed for the community to see, he'd need to be unbanned and given the same short leash as Horse did.
    4 points
  3. I'm ready to brick mass my way out of the community Had to fix my avatar,
    3 points
  4. In-game name: SSO LT Naas Age [minimum 15 y/o]: 17 SteamID (https://steamid.io/): STEAM_0:1:134288Warns:https://steamcommunity.com/sharedfiles/filedetails/?id=2510640235Timezone: EST Playtime? [minimum 75 hours, use /playtime in-game]: | SSO LT Naas has played for 2986:31:57.Do you have access to TeamSpeak and a microphone?: [YES/NO] Yes Do you have the ability to record Garry's Mod videos?:[YES/NO] YesReferral(s): [What administrator recommended you to apply?] Salmon, Party, Python, Tuna, Fonza and WhuPast experiences as staff: [Optional] Was staff twice for GG MILRPHow do you plan on benefiting our server? [minimum 2 paragraphs] I plan on benefiting this server multiple ways. With my understanding of the player base and community as a whole, I can almost guarantee these goals will be accomplished. I want to help players with issues inside and outside of the community. I have noticed that RU numbers have been a issue lately and I believe the RU side needs a bit more help. But RU wont be the only country I will help with. With my availability and activity I will be able to help out anyone on the server with an issue. Where ever I'm needed I will help out no matter the issue. Also with my activity I will be able to get on the server at later times when most of the time staff either is AFK or is not the server at all. I know this community. I have been playing Garnet Gaming for a while now. I believe that staff should not only be active and available but also know how the community works and wants. I will be active on forums, to help with appeals, reports and other administration work. I know the in's and out's of the community. That will be my biggest pro while being on the staff team. I do realize that taking sits is not too great of a hassle for staff. (Any staff can take sits). But as a staff member I will also be setting a example to users and other staff. This could mean RP, helping other staff, shed light on rules, and helping out base factions with any issues. Have you made any previous applications, If so when?: November 30, 2020 Accepted, July 30, 2019 Accepted, November 18, 2020 Denied How much time do you have to contribute to the role?: Now that school is over, I will be able to contribute 6 to 10 hours everyday
    2 points
  5. +1 Naas was always willing to help 2GA out as an SSO, so I have no doubt that he will take that same enthusiasm and helpfulness to the role of staff.
    2 points
  6. literally the first google result Steam Workshop::Simple Crosshair (steamcommunity.com)
    2 points
  7. DARK RP - CONSOLE/BINDING/AUTOEXEC.CFG SCRIPT GUIDE Welcome! Don’t know what any of the above means? Don’t worry, that’s what this guide is for. CONSOLE If you don’t know what the console is then you’re rather fresh. It’s possible you’ll even need to enable the Developer Console, though it should be enabled by default. Once it’s enabled, your console will look like this when you hit the `/~ key (also called Tilde - usually located below your escape key) BINDING Binding is simple. Use the following format to make any bind you wish: Bind key command For example: bind f lastinv ^the above command will replace your F key’s function (if it was used previously) to the “lastinv” command, which swaps between your current and last weapon. It’s also my favorite console command. bind f ^the above command will check what the f key is doing. If it’s unused, it will return: “f” = “” In the above, I’ve checked that F is unused, bound it to lastinv, and then checked that it’s being used. Now for a slightly more complex bind: bind k " ; +left ; +forward ; +duck ; +walk" ^this bind enables the K key to cause you to go Left+Forward while Crouching and Walking. If you ever had to step away from the keyboard to eat or use the bathroom, this type of command will lead the server to thinking you’re still active, buying you time before the Auto-Slay kicks in. ALIASES Aliases are a little more complicated than binding. Think of it like a shortcut to commands: alias garnet "connect 208.103.169.33:27015" ^this alias creates a command alias called Garnet, in which if you type just ‘garnet’ into the console it will run the command "connect 208.103.169.33:27015", connecting you to Garnet DarkRP#1. This in itself is somewhat useful and time saving, but you can do the same thing with creating a Toggle-Key. Lets use the above example from Binding: bind k " ; +left ; +forward ; +duck ; +walk" Using this would still require you to have to use another key to turn off the AFK Macro: bind l " ; -left ; -forward ; -duck ; -walk" However, if we use a simple alias, we can have the same key turn on and turn off the AFK function: alias disable "alias toggleafk enable; -right;-forward;-duck" alias enable "alias toggleafk disable; +right;+forward;+duck" alias toggleafk "enable" The above set of aliases allow you to create two aliases, one for enablement and disablement, and a third for the toggle. Then you just bind the toggleafk alias to a key: bind u toggleafk Now, every time you hit the U key, it will run either Enable or Disable. Enable will enable the macro, while also re-aliasing the toggleafk to Disable, so that the next time it’s pressed it will Disable the macro, and re-alias toggleafk to Enable. I hope the above wasn’t too complicated! That is about as hard as it gets. There is one gigantic flaw with aliases however: the game will not remember them. You will need to use Autoexec.cfg to make settings that remain every time you open Garry’s Mod. AUTOEXEC.CFG This is where it all comes together. You have the console enabled, can bind keys, can alias keys and bind those aliases! Now, lets get to business and find the autoexec.cfg file… There’s an easy way and a more complicated way, and the more complicated way is only good if you know exactly where to look so we’re going to go the easy way. Open up steam, right-click Garry’s Mod from your library, click Properties, the Local Files Tab, Browse Local Files, then go into the garrysmod folder to find the Config folder: Now you should see a folder like this: If you don’t see a file called autoexec.cfg, make a new file (don’t name it anything) and open it up: Now, Save-As this document from notepad with a new name, autoexec.cfg but ensure that you set Save As Type = All Files, not Text Document, or it will still be a Text Document and not the CFG file Garry’s Mod needs. Now I’ll give you my entire autoexec.cfg file; use as little or as much as you want in your autoexec.cfg file. If you made changes while in game, save it and run this command from console: exec autoexec ^this is how you execute any other script that isn’t autoexec. Autoexec will run every time you run Garry’s Mod, automatically (automatically execute = autoexec) All of the Aliases have my own keybindings, which I don’t have in the autoexec. You will want to make a bind for any aliases that you want to use below with your preferred key: Anything that is formatted with two slashes like this: //this is a comment Is a code comment and will not run; it is there for informational purposes but will not cause any issues. SHANKNINJA’S AUTOEXEC.CFG CONFIGURATION NOTE: ONLY USE WHAT YOU WANT! IF YOU COPY-PASTE THE WHOLE THING, YOUR GRAPHICS WILL DEGRADE BUT YOUR FRAMES WILL IMPROVE //Toggle automatic AFK Spin+Crouch (quieter if crouched) alias disable "alias toggleafk enable; -right;-forward;-duck" alias enable "alias toggleafk disable; +right;+forward;+duck" alias toggleafk "enable" //Toggle automatic walking alias disablewalk "alias togglewalk enablewalk; -forward; -walk" alias enablewalk "alias togglewalk disablewalk; +forward; +walk" alias togglewalk "enablewalk" //Toggle crouch alias disablecrouch "alias togglecrouch enablecrouch; -duck" alias enablecrouch "alias togglecrouch disablecrouch; +duck" alias togglecrouch "enablecrouch" //Toggle Right-click alias disableattack2 "alias toggleattack2 enableattack2; -attack2" alias enableattack2 "alias toggleattack2 disableattack2; +attack2" alias toggleattack2 "enableattack2" //Toggle Shoot alias disableattack1 "alias toggleattack1 enableattack1; -attack" alias enableattack1 "alias toggleattack1 disableattack1; +attack" alias toggleattack1 "enableattack1" //Toggle E/Use key alias disableuse "alias toggleuse enableuse; -use" alias enableuse "alias toggleuse disableuse; +use" alias toggleuse "enableuse" //Toggle thirdperson and firstperson (not needed for GarnetGaming) alias disable3ptoggle "alias toggle3ptoggle enable3ptoggle; thirdperson" alias enable3ptoggle "alias toggle3ptoggle disable3ptoggle; firstperson" alias toggle3ptoggle "enable3ptoggle" alias garnet "connect 208.103.169.33:27015" //Multithreading gmod_mcore_test 1 mat_queue_mode -1 cl_threaded_bone_setup 1 //gmod_mcore_test 1 //mat_queue_mode 2 //cl_threaded_bone_setup 1 //everything after this line will degrade //graphics but improve performance. //FPS Config M9KGasEffect 0 mat_bloom_scalefactor_scalar 0 r_3dsky 0 mat_bloomscale 0 cl_forcepreload 1 cl_smooth 0 cl_detaildist 1 cl_detailfade 800 cl_ejectbrass 0 cl_show_splashes 0 mat_compressedtextures 1 mat_bumpmap 1 mat_clipz 0 mat_filterlightmaps 0 mat_filtertextures 0 mat_mipmaptextures 0 mat_softwarelighting 1 mat_specular 1 mat_picmip 2 mat_parallaxmap 0 r_fastzreject -1 r_threaded_particles 1 r_threaded_renderables 1 r_decal_cullsize 1 r_drawflecks 0 r_drawmodeldecals 0 r_dynamic 0 r_lod 0 r_WaterDrawReflection 0 r_WaterDrawRefraction 0 r_waterforceexpensive 0 r_cheapwaterend 1 lod_TransitionDist 1 dsp_enhance_stereo 0 snd_mixahead 0.7 fps_max 120 muzzleflash_light 0 ai_expression_optimization 0 sv_forcepreload 1 cl_threaded_client_leaf_system 1 r_threaded_client_shadow_manager 1 r_threaded_particles 1 r_threaded_renderables 1 r_queued_ropes 1 studio_queue_mode 1 r_fastzreject -1 r_queued_post_processing 0 cl_forcepreload 1 mat_shadowstate 0 r_shadowmaxrendered 0 r_shadowrendertotexture 0 r_shadows 0 //Don't use this stuff unless you know what you're doing (hint: you don’t) //This is network related but caused a lot //of problems when I used it so I don’t recommend it. // EXPERIMENTAL CONNECTION CONFIG (un-comment the bits you understand) //cl_cmdrate 66 //cl_interp 0 //cl_interp_ratio 1 //cl_lagcompensation 1 //cl_pred_optimize 2 //cl_smooth 0 //cl_smoothtime 0.01 //cl_updaterate 66 //rate 60000
    1 point
  8. I'm posting this on behalf of Medinator. Please give it a read, and give it some consideration rather than an instant disagree and -1. I've been talking with him for awhile and have him on snapchat so I know he isn't bullshitting. NOTE: this is 1 of 2 ban appeals (unless management decides to fully let me go) 2nd note: This appeal is for the document/toxicity ban and my MRP ban will touch more on the "Unacceptable Behavior" ban In-game name: Medinator SteamID (https://steamid.io/): Staff members in-game name: Garnet Staff members SteamID (/id (name): Date & Time of incident: Roughly a year ago Timezone: CST Ban Reason: Toxicity How long were you banned for?: Comm Ban (perma) Proof of Ban: (show proof) What happened? (include any proof): Roughly one year ago, i received a community wide ban for toxicity. This was due to my assisting in creating a document that was complaining about the MRP community, as well as other parts of the community as a whole. I did this with a few other people, most of which chose to remain anonymous, and me being stupid as hell tried to fight toxicity with being toxic back Why should your ban be removed?: A lot has changed in the last year, at the time of making that document, i was really down bad for Petal as most of you know. At the time, she and i wrote that document with the help of some anonymous community members. I believe I should be unbanned due to my maturing over the last year. In that time I believe I have really progressed as a person, Im graduating high school, I am getting certified in IT, am going to college, i have a wonderful girl and I actually now have a life now rather than just being a retard online, at least I feel like i do. Especially with the feedback that I have gotten since I have started to show myself around the community again, i feel like others have seen that I have changed as well. and with that all said, ive missed this community so much since my ban and it would mean so much to at least lose my community ban and see everyone again, with this being my first comm and major ban id hope those who havent seen me in a while will be open arms
    1 point
  9. Unboxing oke we back Fingers crossed that this time around there's no issues of overflowing! Functional Console oke we back too Console is once again usable for all players, all spammy yellow debuggers were removed, expect ever so slightly higher FPS Optimizations oke we'll see how this goes Gave the server a slight optimization patch that may just raise FPS Word Scrambler NOW AN UNSCRAMBLER :^) Difficulty go >:) MIGHT NOW CONSIDER MAKING PLAYERS EARN CREDITS BY COMPLETING THESE
    1 point
  10. n-game name: 11A 1LT Maximus Price Age [minimum 15 y/o]:28 SteamID (https://steamid.io/): STEAM_0:1:552387013 Warns: none Timezone: CST Playtime? [minimum 75 hours, use /playtime in-game]: 240 hours Do you have access to TeamSpeak and a microphone?: [YES/NO] Yes Do you have the ability to record Garry's Mod videos?:[YES/NO] no i am too old to understand Referral(s): [What administrator recommended you to apply?] none i took it upon myself after seeing someone spam the nword while no staff were on Past experiences as staff: [Optional] i know some commands such as !goto, !bring, !kick (steam id) (reason) !menu, and i know how to jail and unjailHow do you plan on benefiting our server? [minimum 2 paragraphs] Im going to be honest, i cant tell you how i could benefit the server. I can show you, there as already very good staff members, very helpful, and very respectful. With my experience not just as Military Police, and being an Officer in the US Army, i have learned to approach chaotic situations with a calm, non-confronting, and compassionate attitude. You are there to serve, not to "harm". The job of a staff member is to uphold and enforce the rules of the server, and the will of the players. Not only are you the front line defense against rule breakers, you are the first if not the first, one of the first people the players interact with. I've met a few staff whom i respect and admire. Also one thing i could bring, is a strong leveled head, someone who thinks before acting. I can also help other players who need help, plus i am a quick learner and i don't give up even if that means i have to take a bullet. Ive been playing gmod for about a few months now, i got into it by playing vietnamrp with my nephew, then i found this server and then i met some buddies and also shared a few storied from when i was stationed in Korea. I can bring not only military experience, but some life experience. Sometimes, it takes one smile to change your day, and i hope i can make at least one player laugh or enjoy their time. As my time as an Commissioned Officer, Warrant Officer, and an Non-Commissioned Officer, I learned in order to lead, you have to follow, and in order to lead you must also inspire. I feel like i have helped the server by leading by example. i joined Garnet about 2-3 months ago but never really got into it until i met Conway and Theos. I never thought there was a community surrounded by the military. And when i found out there were actual veterans it made the experience 1000x times better. I have an open door policy if you need help dm me, if you think i did something bad come to me, if i think you did something bad i wont scold you i will tell you how to fix your mistakes. I think i could also bring a great military sense of humor. One thing i can bring to the staff team, is a hard working attitude, i don't give up nor do i give in. If something is too hard, i ask for help, i don't allow myself to give up. I can also motivate the unmotivated staff members. It just takes one smile to brighter your day. I can also bring a third perspective, to the discussion. I know this i me supposed to tell you what im gonna do or some shit like that, but i believe in action, if somebody says they are gonna do it more than likely they will but half ass. Me i don't give up until its solved. Have you ever been banned or punished on GG MRP? If so, Include details. None Have you made any previous applications, If so when?:none this is the first How much time do you have to contribute to the role?: until i get deployed then duty calls I also want to take this time to say this, if you do disagree with me, come to me and we shall have a constructive conversation. Also Happy Memorial day everyone!
    1 point
  11. In-game name: 11A GEN BingBoing Age: 15 SteamID (https://steamid.io/):STEAM_0:1:197627898 Warns: 1 for basecamp Time zone: EST Playtime?: 372hrs(perms from jake) Do you have access to TeamSpeak and a microphone?: [YES/NO] yes Do you have the ability to record Garry's Mod videos?:[YES/NO] yes Referral(s): [What administrator recommended you to apply?] Fetn, Aparh Past experiences as a Game Master: [Optional] none Why should we choose you over other applicants? [minimum 2 paragraphs] So, to start off I have a good amount of patience and I do not get to frustrated with people who are not understanding things. I am willing to work with them to make sure even the ones that have trouble get involved in the event. In my eye’s events should be for everyone which is why I would make just about any role in an event available to anyone. When I host, I would have a different kind of event. I would like to host more longer developed plots that will be influenced by the actions of the leaders of groups and the members partaking in the event. Which means that it can sort of be like those you decide the plot books but with events. As I believe being able to directly influence the general outcome of the lore could make it far more enjoyable and keep people interested as it would have a more satisfying ending. Also, I work well with most people and usually don’t butt heads with a lot of people. With that I’d be able to work well with the other GM’s and wouldn’t drag them down or cause problems that would waste everyone’s time. Have you ever been banned or punished on any server? If so, include details. No. How much time do you have to contribute to the role?: Well, I am still going to remain dedicated to my role in Army but I could say about 2-3 hours a day is possible for GM roughly depending on the day. I would say I can meet a consistent bare minimum of 10 hours per week. Probably more on most weeks. In your own words, what are the responsibilities of a Gamemaster?: For me at least the responsibility of a GM is to host events to cure boredom and provide the participants the information exposition and roles they will need to create the scenario that the GM pictures. And sort of nudging the players into a direction so it doesn't turn out like crap. As well as providing more serious RP experiences for the community. And making sure most players can be involved if they want to. Describe how you would contribute to RP as a part of the Gamemaster team: I would be able to contribute by feeding those who want a serious lore intense scenario, Another way I could contribute is by helping some of the less RP focused players and having them be with some who are more serious about RP and have them learn from them so with time they too can become more involved once they have figured it all out. Explain your single most creative idea for contributing to the RP environment of the server: As I briefly mentioned earlier one of the most creative ideas I think I came up with was the idea of the lore of each event revolving directly upon the actions that the participants do and the choices they make. This could create more interesting stories to be told and more unpredictable spots and really develop a climax. To Further prove this point I made a flow chart showing how the very first event in the timeline will have different events leading off of it based on what happens in the first one. Please list and explain 5 unique event ideas of any scale: [Be sure to include any additional context that may be necessary to your explanation] 1: Name : Infiltration Exposition : Central Intelligence of each Country informs all Active Forces that they have discovered possible spies as they were checking security and noticed some unidentified individuals poking around SOC bunks. (this part is interchangeable for RU or US) Goals : The spies will be unknown to the RU or US IC and OOC to avoid metagaming, they will be tasked with 3 goals. 1st being learn as much information on US or RU as possible without getting caught, 2nd Insert a virus into High ranking officers computers to steal any unencrypted data. 3rd Find an officer or Senior Enlisted and kidnap them and return them to RU or US alive. Ending : Whatever tasks they do not complete will impact what event occurs next in the Timeline. 2: Name : The Delta Warhead Exposition : Spies were successful in implanting the virus into the an Officers computer, the data uncovered shows an attachment from another officer detailing the schematics to the structure of a weapon of mass destruction. However this cannot be proven real or an idea until they see it for themselves, at the end of the email it reads : “ Location - Delta Containment : Silo” With this information gained RU and US will plan a scouting mission sending out their best troops to find and document the warhead. They cannot kill any RU on Silo and must not get caught. Doing so will lead to the finale in the timeline. If they successfully document and capture photographs of the Warhead they will plan a attack on Delta Containment : Silo if they are able to get the spreadsheet on delivery dates to Delta Containment : Silo. They will know when most ground troops will be bundled up and will have an easier time. If not they will still be able to raid but will have a much harder time as more troops will be on post. Goals : 1st Figure out if the Warhead is real 2nd get the spreadsheet on times when the delivery truck will arrive. 3rd clear Silo and defuse the Delta Warhead. Ending : If they fail to defuse the Warhead the opposing party gets to use the warhead to clear any objective 1 time during war. If they defuse the bomb they will be able to arm it and use it against the opposing party for 1 objective clear during the next war. 3: Name : The Gathering Exposition : The spies were caught and were questioned and forced to give out information. The information given will include 1 – Their name and rank 2- the officer that sent them 3- their goals while in US Base. The country that caught the spies will demand a meeting with the opposing party. They will meet up and discuss the spies and threaten that action will be taken if they try to spy on them again. But suddenly the meeting is interrupted by the Al-Sabaam. A new terrorist organization that used the gathering of high-ranking officers to their advantage. They take hostages of all the officers at the gathering. The next part will require the RU and US to either work together to raid the Al-Sabaam and rescue their officers, the Officers are learn information while the leader is monologuing that they can use later. Goals : 1st Discuss the concern of having spies, 2nd Plan and get ready to counter and save the VIPS from the Al-Sabaam 3rd save all hostages from the Al-Sabaam and attempt to take a prisoner. Ending – If they successfully stop the Al-Sabaam and rescue their officers they do not loose info and gain info which could help later as now a new threat has emerged. If they are unsuccessful they do not gain information and loose their officers and now know the threat exists but know nothing about it, 4: Name : The Rise of the Al-Sabaam Exposition – the rescue raid fails on “The Gathering” then the US and RU Military’s leadership as crippled leaving them very vulnerable. The Al-Sabaam see this and use a bomb threat to lure in forces. Of course, the US responds and heads to to the place the Al-Sabaam described. This was a trap and the Al-Sabaam has them cornered by marksmen. They demand all information known by the US of RU or they will elimate a large chunck of their forces. The US surrenders and delivers the information. With the information at hand the Al-Sabaam allows the US to withdraw without any harm. The RU and US with crippled leadership and depleating numbers call for an alliance. They will work decide to team up to stop the Al-Sabaam from gaining too much power. Goals : 1st Respond to the bomb threat. 2nd Team up with RU to plan an attack to stop the rise of the Al-Sabaam. Ending – this one can really only have 1 ending. The US and RU must team up to defeat the Al-Sabaam or they will fail. They will respond to the bomb threat as they will believe lives are in danger if they don’t. If the forces are able to rescue most of their officers this event will be skipped and it will skip to “The Fall of the Al-Sabaam”. 5: Name : The Fall of the Al-Sabaam (the Finale) Exposition – RU and US team up to defeat the Al-Sabaam and if they got the information from the officers they will know that a change of leadership will be occurring soon as well as its location. If not they will hijack the comms and learn this information from their leader sending out a message to his members. Once they learn about it they will plan to attack and force the Leaders to surrender. Goals – 1st Learn about the change of leadership. 2nd plan an attack on the meeting. 3rd force the Al-Sabaam to surrender and agree to terms that the RU and US will decide upon. Ending – RU and US will work together to defeat the Al-Sabaam if they do not they will not be able to take them down and they will cripple and be forced out of the land and end of the timeline. Quick little flow chart of sorts to explain how each event could result in different endings. Infiltration –- Spies get caught. –- No –- Delta Warhead | Yes | The Gathering | Rescue Fails – Yes --- The Rise of the Al-Sabaam –- The Fall of the Al-Sabaam. | No | The Fall of the Al-Sabaam Thank you all for taking the time to read this!
    1 point
  12. +1, always seemed like a cool guy, very capable of staff. Not many reasons for him not to be staff honestly.
    1 point
  13. now the two people who can spawn them can finally fly also brick
    1 point
  14. Naas has been a great officer to SSO and he is always here to help. he was staff before so he can do it again. Good luck!
    1 point
  15. ayeeee i made an appearance in the video lol
    1 point
  16. 1 point
  17. Yeyyy SSO guns are useable let’s go!!
    1 point
  18. FAT +1 Naas is a great guy to be around, experienced with both staffing and the community as well! Playing in SSO with this guy has done nothing but make me like him more as a friend, he's a cool dude.
    1 point
  19. Good montage no cap but like stretch rez ;-;
    1 point
  20. Thank you, I feel like the brick is really going to add to the server and might even change the entire PvP system. We’ll have to see, but I think there’s a chance it could open up an entirely new meta, possibly outclassing all other weapons!
    1 point
  21. "late night" >It's 5AM and I can't sleep
    1 point
  22. Late night updated be lookin good thou
    1 point
  23. Just make it. You can easily throw it together in gimp/paint.net in under a few minutes.
    1 point
  24. 1 point
  25. The easiest lie is to say my copy and paste is not working correctly I generally do think there should be like a first offense type of situation if it’s the first time then you get like a week or two ban, maybe the second offense is like a month and then after that it’s a perma
    1 point
  26. imagine having binds for word scrabble but yeah its safe to assume once the words are repeated a few times people will make keybinds
    1 point
  27. In-game name: SmittySteamID (https://steamid.io/): STEAM_0:1:155820777In-game rank: TAdminTimezone: ESTLength of LOA: 1 MonthReason: Can't go too in detail but I'm going underway for the month of June. For those of you who don't know what that means it just means I'm going to be in the middle of the ocean for the next month. Hope all goes well
    1 point
  28. 1 point
  29. My opinion on the situation on the doc... medinator your a fucking idiot that doc should have never been made because it just became a doc where people could shit on other people well staying hidden. But I also think the only reason why medinator assisted in making the doc was because of the people around him encouraged/steered him towards that path. A good example of a person that encouraged metinator is petal, medinator was getting a bit to rambunctious for some egirl and wasn’t thinking about the future. So my final conclusion would be +1 also I’d like to note please explain why you disagree instead of just reacting disagree
    1 point
  30. Theres around over 200 CCs the reason you don't see it in f4 is cause... to load in ALL CCs ever bought would be a hassle and fuck the f 4 menu a bit im pretty sure.
    1 point
  31. im garbage and i cant aim watch till the end for a funny
    0 points
  32. Very funny. Moving to denied. If you want to make a real app feel free to follow the advice that has been given.
    0 points
  33. very sexy montage. crosshair tho? I've been trying to look for this crosshair
    0 points
  34. How did both your staff positions/ranks come to a finish?
    -1 points
  35. Alright so I'm going to edit my response because idk if you are actually being serious but I'll put in the effort if you are. So this is what needs fixing... #1 -- 6 warnings alone is one of the WORST things you can do when applying for staff -- So I suggest you wait 2 weeks for them to go away and re-apply #2 -- You don't have to include your ban if the appeal was "accepted" because it already shows up on the ban logs as the appeal was "accepted" #3 -- Why should we choose you over other applicants? [2 PARAGRAPHS MINIMUM] #4 -- You will spend 4-13 hours ONLY on the forums? lol I'm hoping you meant the server. #5 -- Did you read the staff rules? -- Where is this question? #6 -- What is your in-game name? -- don't know why this isn't here #7 -- When having a FORMAT to use, I really don't think you should take the time to re-organize the entire format. You followed some of it but I see things that are on the format that should be at the top first hand, and others that aren't where they are supposed to be. Please follow the format the way it is. It helps everyone follow the application and read it so we can make a decision to either +1 or -1. Overall, that's what needs fixing but as you can see I'm going to be staying as a -1
    -1 points
  36. age: 16 steam id: 76561199074783062 hours played: 86:31:31 amount of warnings: 6 total bans: 1 but appeal was excepted. microphone: yes, I have a mic. why should u chose me: I have lots of free time and will read the rules very carefully. how many hours of my day will i be able to contribute: i can be on forom about 4-13 hours. timezone: PDT
    -1 points
  37. suck it whu, you're trash
    -2 points
  38. I definetly did not bother you with GM perms i swear i definetly so uhhhh can i get a custom rank on forums called gay thanks
    -3 points
This leaderboard is set to New York/GMT-04:00
×
×
  • Create New...

Important Information

Terms of Use | Guidelines