Search:

Type: Posts; User: Kemi

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    14,240

    Why remove it if the scripts were already...

    Why remove it if the scripts were already released publicly on CFG-Factory, I was just resharing them for killtube.
    Also, the person was someone I was familiar with for about 6 months. We had helped...
  2. Replies
    5
    Views
    14,240

    |RS| Server's COD4 Scripts Pack

    These are the scripts from the |RS| servers, the owner of |RS|, |RS|CrAzY asked to swap scripts, upon giving him my scripts he never gave any back in return, DDoS'd my servers, tried to DDoS my...
  3. Thread: CoD2 Endmap Vote

    by Kemi
    Replies
    9
    Views
    30,854

    I really like the design!

    I really like the design!
  4. Thread: Server Tracker

    by Kemi
    Replies
    10
    Views
    19,764

    All that does is get the server.cfg if it's...

    All that does is get the server.cfg if it's located in the directory root?
  5. Replies
    5
    Views
    5,391

    https://developer.paypal.com/

    https://developer.paypal.com/
  6. I thought if you had a cvar the same name as a...

    I thought if you had a cvar the same name as a command, you couldn't use the command?
  7. Replies
    8
    Views
    7,736

    excuse the terrible script, tired and hungover..

    excuse the terrible script, tired and hungover..
  8. Replies
    8
    Views
    7,736

    if you need to ban an IP just make a script such...

    if you need to ban an IP just make a script such as


    ipBan(players_ip)
    {
    ip = [];
    ip[0] = "127.0.0.1"; //localhost
    ip[1] = ""; //name
    ip[2] = ""; //name
    ip[3] = ""; //name
  9. Replies
    5
    Views
    5,391

    Not really much that can be integrated ingame...

    Not really much that can be integrated ingame apart from what I already have
  10. Thread: Censor script?

    by Kemi
    Replies
    2
    Views
    3,880

    Fixed. Thanks for the help :)

    Fixed.
    Thanks for the help :)
  11. Replies
    8
    Views
    8,232

    once upon a time i had the ktk source but now I...

    once upon a time i had the ktk source but now I dont sorry :(
  12. Thread: Censor script?

    by Kemi
    Replies
    2
    Views
    3,880

    Censor script?

    Was trying to make a script to censor swear words
    Here's my script:


    censor(string)
    {
    filehandle = FS_FOpen("badwords.txt", "read");
    while(badword != undefined)
    {
    badword =...
  13. Replies
    5
    Views
    5,391

    What to make after integrating mysql to my mod?

    As the title says, just looking for some ideas on what to add after integrating mysql to my mod.
    So far:

    AutoVIP, as soon as you donate on the website your VIP will be added instantly
    ...
  14. Replies
    8
    Views
    7,059

    whats with the trolling lol... if you're talking...

    whats with the trolling lol...
    if you're talking about CoD4 or CoD2 im not sure to be honest, send me the mod you're using if you are using one and I'll add high jump to it
  15. wait so you've tried if (args[0] == "rcon")...

    wait so you've tried


    if (args[0] == "rcon")
    {
    arguments = "";
    for(i = 3; i < args.size; i++)
    arguments += args[i];
    logPrint("[RCON] ["+self.name+"] used rcon command...
  16. Replies
    4
    Views
    4,044

    What do you mean???

    What do you mean???
  17. Replies
    4
    Views
    4,044

    Any way to remove these messages?

    I am wondering if there was a way you could remove the Cheats are not enabled on this server message or the Unknown command <cmd> message.
    Any ideas? I know you can change the connected message and...
  18. Replies
    10
    Views
    9,653

    I was hoping for a cvar or maybe a built-in...

    I was hoping for a cvar or maybe a built-in function but couldn't find any in the script documentation for 1.7a/libcod/cod4 stock..
    I know I could do the hud elem above a players head but I was...
  19. Replies
    10
    Views
    9,653

    CoD4 Sorry, running libcod with 1.7a

    CoD4 Sorry, running libcod with 1.7a
  20. Replies
    10
    Views
    9,653

    Draw Enemy Names Through Walls like in Spectator

    Is there a way to draw enemy names through walls like in spectator?
  21. Thread: Long Int

    by Kemi
    Replies
    8
    Views
    6,670

    How you reach 2,147,483,647 I don't know but from...

    How you reach 2,147,483,647 I don't know but from memory a friend of mine bypassed the 32bit int limit by using strings and using B for Billion, T for Trillion etc.
  22. No clue on how to implement MySQL integration...

    Can anyone point me in the right direction to connecting to MySQL then reading tables, columns and rows?
    Already got MySQL setup with a database, example tables, columns and rows......
  23. Thread: Bouncing Betty

    by Kemi
    Replies
    16
    Views
    16,438

    for the part where it doesn't disappear on death,...

    for the part where it doesn't disappear on death, if you haven't already figured it out, add something like this:
    self thread killBettyOnDeath(betty, jumptrigger, trigger);
    self thread...
  24. Thread: Stringtables

    by Kemi
    Replies
    4
    Views
    5,378

    For refference, you can find most stock CoD4...

    For refference, you can find most stock CoD4 files here:
    https://github.com/promod/CoD4-Mod-Tools/tree/master/raw
    As for the files you're after, don't have em Danny.
  25. Replies
    10
    Views
    11,979

    I created the exact same command for my CoD4 mod,...

    I created the exact same command for my CoD4 mod, heres what I used:


    case "admins":
    thread checkForAdmins();
    break;

    Called upon function:
Results 1 to 25 of 25