-
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: 849 -
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,895
- Latest member:ExpertUpholstererInSydney

http://www.youtube.com/watch?v=Id2kANw_sMU
oh btw the soldier won. http://www.teamfortress.com/war/victory/

Hi,
Two questions i have:
How can i turn off that credits too fast earning protection?
"[SourceOP] You were slayed for earning credits too fast."
And how can i turn off that earned the maximum credits allowed for this map feature?
"[SourceOP] You have already earned the maximum amount of credits allowed for this map and cannot get any more until the map changes."

I just got kicked out of school for the week for using Google. Should've used ask.com I suppose.

Any demomen using it are hereby Uncool
In-case you're blind or your f5 button is broken.

Just curious, was pointed out that your living teammates cant hear you when you're dead. As thats when I'm most talkative, was just wondering why that was.

I don't know what your policy is on ban lifts. I got banned quite awhile ago being a music mix mic spammer, I don't do that anymore and just want to play.
Other servers were ok with it and I even got request sometimes, and I know it was against the rules but you know. I'm not trying to get unlisted just to mic spam some more, if I really wanted to mic spam music I would just do it in the other servers but I don't even mix spam anymore. this was a long time ago lol, I think about a year or so.
Anyways, here is my fancy ban page
http://www.sourceop.com/modules.php?name...ails&id=77
Just want to play some tf2 like the good old days.
later

sorted

Well, I was just looking around my server trying to figure out a way to improve it for new players, and I thought, "what if I could have a menu to bind keys? That would stop every noob in the world from typing +rotate or e_freeze in chat every 2 seconds wondering why it doesn't work!" Then I remembered: SourceOP has a bind menu if you type !jetpack or !radio. Any chance I could get what SDK call you did/a hint in the right direction as to how I can setup a bind menu for a couple commands, like +hook, e_freeze, e_unfreeze, etc?

http://store.steampowered.com/news/3237/
Just pointing our they never mentioned FREE add-on.
I would hate to have to pay to play a campaign to play with both new/old survivors.
hey, i have to write a recursive function that computes the factorial of a number given the following prototype:
void factorial (long argument, long *result)
here's what i have written, it compiles, but whenever i run it i get a segmentation fault. i'm pretty sure i'm just not using the pointer properly, any help would be greatly appreciated.
#include <stdio>
void factorial(long argument, long *result);
int main(){
long a;
long *result;
*result = 1;
printf("Enter a number: ");
scanf("%l", &a);
factorial(a, result);
return 0;
}
void factorial(long argument, long *result){
if (argument == 1)
printf("The factorial of %l is: %l", argument,*result);
else{
*result = *result * argument;
factorial(argument-1, result);
}
}
i'm pretty new to C so if there are any other obvious flaws feel free to point them out.