Pixel

Donator
  • Content count

    407
  • Joined

  • Last visited

Everything posted by Pixel

  1. So we've had memes, GIFs, vines, movies etc.. but I see no funny video thread, so I thought I'd create one! Share some funny videos which make you laugh :) I will go ahead and post this one (It's kind of horrible, but I laughed so hard)
  2. Hola, so I am personally just educating myself on running servers etc, and I have had help from a few people so thanks to them. So, this is the error I get upon starting the server: I know you're probably laughing, oh well xD I appreciate all help! Thanks
  3. Not sure, seen it before, perhaps to change thing up for 20 minutes :)
  4. Thanks for the advice everyone. @@Scillman I'm sure I've seen servers change the map to random stock maps for the fun of it? I will try with DR maps soon though. Clean installed my server, need to setup again
  5. inb4 all users get subpoena'd lol joke, that wouldn't happen. Governments have been fighting piracy for a long time, they only post that one article about one kid getting a fine, and how many people are illegally downloading in the world? Loads... the government will never win the fight against piracy, it's gone too far now. If they really wanted to, you would see various reports on it. You should also look into deleting your metadata if you're really concerned and proceed to use a logless VPN. You will have to pay, there will be no free logless VPNs that keep their word. I personally pay around $20 per month for one, it has good reviews, message me if you want the link. BraXi pretty much nailed it too
  6. 2011 - best year in school because it's the year that didn't matter, just pissed about all year, fucking hilarious 2013 - actually finished school best feeling ever 2015 - life took a huge turn, improved massively, met awesome new people, got the best part time job I could ask for etc - bring on 2016
  7. I've never had this problem before, but when I compile reflections on my map, it uses a codjumper mod. Last night, I moved all CJ mods to a folder on my desktop, and the custom line is a DR mod. Is there some other setting which determines which mod is used? Here's some things you may find useful: Command Line: +set fs_game mods/phelixdeathrun +set g_gametype deathrun +set developer 1 +set r_fullscreen 0 Compile Reflections File Contents: @ECHO OFF set treepath=%~1 set mapname=%2 set mpmap=%3 cd %treepath% if "%mpmap%" == "1" ( mp_tool.exe +set r_fullscreen 0 +set loc_warnings 0 +set +set developer 1 +set logfile 2 +set thereisacow 1337 +set sv_pure 0 +set com_introplayed 1 +set useFastFile 0 +set ui_autoContinue 1 +set r_reflectionProbeGenerateExit 1+set com_hunkMegs 512 +set r_reflectionProbeRegenerateAll 1 +set r_dof_enable 0 +set r_zFeather 1 +set sys_smp_allowed 0 +set r_reflectionProbeGenerate 1 +devmap %mapname% ) else ( sp_tool.exe +set r_fullscreen 0 +set loc_warnings 0 +set +set developer 1 +set logfile 2 +set thereisacow 1337 +set com_introplayed 1 +set useFastFile 0 +set ui_autoContinue 1 +set r_reflectionProbeGenerateExit 1+set com_hunkMegs 512 +set r_reflectionProbeRegenerateAll 1 +set r_dof_enable 0 +set r_zFeather 1 +set sys_smp_allowed 0 +set r_reflectionProbeGenerate 1 +devmap %mapname% ) cls The reason it's a problem is because I am getting this error, so i need to load the DR mod: Scripts run fine, BSP runs fine, running the map (step 5) is fine too. I'm lost for ideas now, thanks for any help.
  8. Sorry I haven't replied, I have been occupied with other things... Thanks for the help guys @@Sentrex didn't work, I got some other error It's look like I am going to need to spend time backing up cod4 and modtools files because my cod4 is pretty much broken, so I'm going to give it a fresh re-install soon. Appreciate the help
  9. I'm trying to work out how to detect when a player which has an assigned variable dies. So if they have self.raid = 1; the script will continuously check to see if the player which has that variable is dead. In the meantime, other players will have self.raid = 2; etc. When the person with self.raid = 1; dies, the person with the self.raid = 2; gets self.raid = 1; etc if that explanation mind fucked you in anyway, i will try explain further, cheers ;)
  10. Not sure, you guys are way more experienced than me, hence why I am posting ;) thanks
  11. Thanks for the help both of you, and Mikey how does that make the person with self.variable =2; to go to self.variable = 1; when self.variable = 1; dies? I will look through your code sentrex and see if i can implement it thank you, and yours too mikey! :)
  12. But what they're trying to tell you is that car colours are statistically proven to be driven by a certain gender, not all the time of course, just a large proportion...
  13. @Cloudy BMW's are amazing, I've loved them for years. My dad used to own a few models of the BMW, nearer to M3 I think, can't remember; I was young... But I just watch videos of the BMW M5 E60 on YouTube... and oh my... :wub:
  14. There's a lot of things that come to mind when it comes to insurance.
  15. I'm 18, 19 this year, passed test nearly one year ago, first car is what has been discussed with family and what a lot of people in this country get for a first car, the BMW is not my second car, but my dream car... omg cat!!!
  16. I was only linking that to you as an example for the picture lol, not actually buying that one
  17. The corsa? 2000 something like this: http://www.motors.co.uk/car-37477419/sp And for the future (BMW) is 2014
  18. I should be driving soon, I've passed my test and all that, and only recently got a bar job so I have an income. Anyway, I am probably getting a small 3 door corsa for first car, and in the future BMW M5 hopefully :)
  19. Congratulations
  20. Say if I had a code like this for example function() { if( self UseButtonpressed() ) { self thread anotherfunction(); } else if( self MeleeButtonPressed() ) { //Go back to the start of this whole thing ( function() ) - like a loop I guess } } How would I do that? I have a faint idea, but not certain.
  21. Deathrun's concept became infected a long time ago my friend :(
  22. Another quick question, say I had two functions. The first function has been completed, it has threaded another function, and scripts are running in the second function now. How'd I make it so the second function can go back to the first function? so like: function() { for(;;) { if( self UseButtonpressed() ) { self thread anotherfunction(); break; } else if( self MeleeButtonPressed() ) continue; } } anotherfunction() { for(;;) { if( self UseButtonpressed() ) { self iPrintLnBold( "Example" ); //this line would go back to function() - Is this possible? Never done it before, and it would make things so much easier for me D: } else if( self MeleeButtonPressed() ) continue; } } Edit: nvm, a friend helped me over steam, thanks for the help bear and sentrex!