Latest Threads

Forum Statistics


Posted by: Snarf
Dec 17, 2009, 08:42 PM
Forum: General Chat
- Replies (3)


Posted by: SammY
Dec 17, 2009, 05:51 PM
Forum: Problems/Help
- Replies (3)

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."



Posted by: Snarf
Dec 17, 2009, 04:55 PM
Forum: Flame Bucket
- Replies (11)

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



Posted by: Snarf
Dec 17, 2009, 02:32 PM
Forum: General Chat
- Replies (17)


Posted by: Ranma
Dec 16, 2009, 06:14 AM
Forum: Bugs/Problems
- Replies (9)

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.



Posted by: Pale
Dec 15, 2009, 07:16 PM
Forum: General Chat
- Replies (9)

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



Posted by: completely_different
Dec 15, 2009, 05:57 PM
Forum: Testing Area
- No Replies

sorted



Posted by: nicatronTg
Dec 15, 2009, 12:47 AM
Forum: Coding
- Replies (1)

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?



Posted by: Butane
Dec 14, 2009, 04:50 PM
Forum: General Chat
- Replies (9)

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.



Posted by: Banksy
Dec 14, 2009, 03:42 PM
Forum: Coding
- Replies (2)

hey, i have to write a recursive function that computes the factorial of a number given the following prototype:

Code:
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.

Code:
#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.