-
Multiple Registrant: V4CU...
Forum:
Last Post: Tony Paloma
Feb 26, 2025, 01:10 AM
» Replies: 0
» Views: 0 -
The Return of SourceOP 24...
Forum: SourceOP and Server News
Last Post: Skyrider
Jan 27, 2025, 03:33 AM
» Replies: 0
» Views: 626 -
Multiple Registrant: ruck...
Forum:
Last Post: Tony Paloma
Nov 24, 2023, 04:27 AM
» Replies: 0
» Views: 0 -
Multiple Registrant: Effe...
Forum:
Last Post: Tony Paloma
Nov 23, 2023, 07:59 AM
» Replies: 0
» Views: 0 -
Multiple Registrant: Ranx...
Forum:
Last Post: Tony Paloma
Nov 23, 2023, 02:10 AM
» Replies: 0
» Views: 0 -
Multiple Registrant: alec...
Forum:
Last Post: Tony Paloma
Oct 26, 2023, 10:18 PM
» Replies: 0
» Views: 0 -
Multiple Registrant: niki...
Forum:
Last Post: Tony Paloma
Oct 26, 2023, 12:48 AM
» Replies: 0
» Views: 0 -
Multiple Registrant: futu...
Forum:
Last Post: Tony Paloma
Oct 25, 2023, 11:32 PM
» Replies: 0
» Views: 0 -
Multiple Registrant: shre...
Forum:
Last Post: Tony Paloma
Oct 21, 2023, 06:19 AM
» Replies: 0
» Views: 0 -
Multiple Registrant: sele...
Forum:
Last Post: Tony Paloma
Oct 14, 2023, 12:11 AM
» Replies: 0
» Views: 0
- Forum posts:1,644,247
- Forum threads:168,694
- Members:63,834
- Latest member:Leobetza.fun

So this week I made some new admin commands (among other things):
- admin_unban - unban a SteamID
- admin_scramble - scrambles the teams
- admin_suddendeath - forces server to go to sudden death (TF2)
- admin_alltalk - toggle alltalk on or off
- admin_playerspray - sprays the spray of the specified player (useful for checking if a player has an offensive spray)
Also, the code that determines how much time remaining has been reworked to be accurate in TF2. Good stuff?

We have eight TF2 servers:
67.228.59.145 - Rotation server, 32 players, official maps only
67.228.49.147 - 2fort server, 32 players, normal respawn
67.228.59.146 - 2fort server, 32 players, instant respawn
74.55.49.243 - Rotation server #2, 32 players, official maps only
74.55.49.244 - Prop hunt server, 32 players
74.55.49.245 - Goldrush server, 32 players
74.55.49.246 - Arena maps server, 24 players
67.228.59.144 - Rotation server, no crits, 24 players
All except prophunt has HLStatsX. You can check your rankings at:
http://stats.sourceop.com/

In case you haven't heard, you can find the SourceOP Wiki here:
http://www.sourceop.com/wiki/
It is not open to editing by the public yet, but it will be some day. I will probably open it up after I release the TF2 version of SourceOP.

http://www.youtube.com/watch?v=GnnMmPJA5...re=related
This is PURE harassment at its finest. The objective was to piss them off and he did it really freaking good.
/Discuss

http://youtube.com/watch?v=s7OKepO_QBU
This just seems to good to be true. I dont see what harm getting this guy to meet with Bush would be, but i dont see any good in that either. He says he would hide his father if he knew where he was(in another interview). I think He should be punished for killing all those innocents. Im a American and i like my life. It's peaceful and i want it to stay that way. I dont agree with everything my government does, and i know alot of Americans agree with me. I dont think its right to take out anger with a government against it's civilians. Im not well educated with history, but maybe my government did commit some atrocious evils in the past, and maybe some of our leaders deserve to be punished, but that doesnt make it ok for terrorists to kill people. If someone killed your kids, it does not give you the right to kill their kids. People are imperfect beings, we make mistakes. Our leaders are people too. Killing will just lead to more killing on both sides. But i fear we must continue to fight until their side is willing to have peace.
I see pictures of Irag and other middle eastern countries on the news. It makes me sad to see all the fire, explosions, death, and despair. I can imagine why so many hate the USA. If our troops weren't their, their would not many explosions and innocent deaths. Terrorist attacks aimed at American Soldiers miss and kill innocent Iraqi Citizens, and US attacks aimed at terrorits that instead kill innocents. Again mistakes made by imperfect people. But you imagine how it would be for both sides if the US never went to Iraq or Afghanistan?
This is my moral opinion

There is a guy by the name of "Josh" who was, at 4:30 PM, PST, hacking like a mofo on your server. I don't know what protocol you follow for hackers, but this guy is definately that.
A little backrground: I have a 12k rating on your server and I have never--NEVER-- accused someone of hacking. This guy, however, is hacking.
Do I need a screen? A demo? His SteamID? What?

I've installed SourceOP correctly on my Windows XP Notebook (SRCDS) - but i get this message when i type "admintut" in console:
Quote:Sorry, the tutorial is locked.
I'm really nearly suicide and i hope that some1 can help me :/
greetz,
blacker

I've implemented a melee vote system using SourceOP's Lua system. It's quite simple really. First I coded a generic Vote class which uses my Menu class to display voting options. Then, from that, I made an "AbstainableVote" class where players can choose to abstain. After that, coding the melee vote wasn't very difficult.
function meleevoteover( vote )
local yesvotes = vote.picks[1]
local novotes = vote.picks[2]
local abstentions = vote.picks[3]
if(yesvotes >= novotes) then
wintext = "Yes wins: "
game.ConsoleCommand("DF_tf2_meleeonly 1")
else
wintext = "No wins: "
game.ConsoleCommand("DF_tf2_meleeonly 0")
end
wintext = wintext .. "Yes: " .. yesvotes .. ", No: " .. novotes .. ", Abstain: " .. abstentions .. "\n"
sourceop.SayTextAll(wintext)
end
function meleevote( pPlayer, command, arguments )
if(!pPlayer || pPlayer:IsAdmin(8, "admin_meleevote")) then
AbstainableVote("Enable melee only mode?",
{"Yes", "No", "Abstain"}, 3, 30,
"Abstain is the default choice.\nAbstentions go to the majority.",
meleevoteover)
end
end
if(sourceop.FeatureStatus(FEAT_ADMINCOMMANDS)) then
concommand.Add("admin_meleevote", meleevote)
end
The code will probably change as I finalize some things. 30 is the number of seconds the vote stays up. 3 just tells AbstainableVote which choice is the Abstain one (3rd one).
The vote can only be started by admins and isn't automatic or on a schedule (unless people want it like that?).
I just thought I'd share some recent development.
Oh, and here is what it looks like in game:
http://www.sourceop.com/screenshots/meleevote.jpg

Not a problem per se, but an interesting situation. I start up TF2 and merrily select our mighty SOP server and turn on the auto-join feature (since I haven't made one of those nifty donations yet) and get ready to wait. Suddenly, TF2 crashes. Well shucks. Start it up again, repeat the auto-join step, but who do I see as the most recently joined player on the server? Me, of course.
Obviously, nothing wrong with SourceOP here. An auto-kick and a reboot should do the trick. But it was worth a laugh, I think.

alright heres the problem
when trying to play a some games (like gears of war) you nvidia card crashes, just the card, and results in the game i'm using crashing as well, then it starts back up, i have had this problem in the past with other games, and i fixed it by lowering the games graphics, but this is already at the lowest level, is there anything i can do to fix this???