-
Content count
684 -
Joined
-
Last visited
Posts posted by BraXi
-
-
Range Min/Max - Unknown
Fade in Min/max - Unknown
Fade out min/max - UnknownDisable far plane culling - Unknown
Blocks sight - Unknown
Draw with viewmodel - Unknown
Sort order -UnknownRange Min/Max - The radial distance from players eye to effects' bbox in which the effect will be rendered
Fade in Min/max - The distance in which effect will fade in from invisibility
Fade out min/max - The distance in which effect will fade off to invisilibity (and stops being rendered, bruh)
Disable far plane culling - If true, the effect will be rendered even if the player cannot see it (helps for large FX - think of giant "nuke mushroom")
Blocks sight - Blocks AI from seeing players through the particle effects (for AI, COD4SP)
Draw with viewmodel - Unknown
Sort order - Rendering order of the effect (ex. the effect will be added(projected? cant find a proper word) onto a water surface)
:davesir:
0 -
If you've updated your gamemodes.txt make sure that whatever the gamemode is scripted as if also named that.
EG: if you renamed deathrun in the gamemodes.txt to pixelrun or something, make sure you also rename the gsc side of the gametype to pixelrun too.
OHGOD it's iMtroll giving advices in coding section :horror:
HE'S GIVING HIS ADVICES "THE BOSNIAN WAY" :horror:
oh and gamemodes.txt is in csgo and not cod4 ;_;
1 -
-
i can help u bro contact me i have experience with those things
and no need for any rewards
There's a reason why are we on forums, post it once and for all instead of sending PM.
1 -
my name goes way back. back almost 6 years ago i was a fag xbox XxXxXzZzzzz kid. came up with this name for youtube originally and i decided to stick with this name because everyone knows me by this name and no sense to change it. its unique so i grew with it
wait :wat: are you IMPLYING you're not an xbox fag undercover in this superior pc community? :troll:
:wub: #nohomo my friend
0 -
r_detail, how i understood disable weap skins and some other not useful things ingame.. if its helpfully to boost up your fps just try it^^
I just had to dust off my old pc and run CoD4 with and without r_detail 0, no improvment at all, please test dvars before pretending that they improve fps.
CoD4 settings: 640x480 fullscreen, all low, shadows disabled, Pixel Shader 2 codepath, com_maxfps 125, com_hunkmegs 1024 + your config, also without miles/mssmp3.asi to actually be able to run the game but without .mp3 support
PC Specs:
CPU: Intel Celeron 3Ghz, 512kb cache, S478, single core
GPU: NVidia Geforce GT6200 128MB GDDR1 AGPx8 / Nvidia Geforce 7600GS 256MB GDDR2 AGPx8
RAM: 1x1GB + 1x512MB DDR1-400 CL3
OS: Windows XP SP3 32bit
Driver: Nvidia legacy driver version 91
Funfact: I made deathrun on even slower PC with ancient CPU which was AMD Athlon XP 2600+ from 1999 year and it's been UNDERCLOCKED to 1866mhz due to mobo replacement which didnt support CPUs with clocks higher than 1.9ghz :awesome:
3 -
How about mods/admins start banning such retards? :dave:
0 -
I have installed it for CoD2 (radiant and other stuff). There is only main/maps/mp in CoD2 directory, but it's empty.
Is it possible for CoD2 to customize game types?
then you don't have raw, instead open one of the last .iwd files in your main and extract scripts
1 -
see under raw/maps/mp/gametypes. Everything that starts with "_" in name is an utility, the ones that are missing that are gametypes (sd.gsc, war.gsc, hq.gsc, etc).
Each gametype is made of two files plus a common "logic":
- mygametype.gsc - gametype script
- mygametype.txt - a file, usually, referencing to gametypes name in localized string (for example "Search & Destroy" above mapname during loadscreen)
- _globallogic.gsc - commonly used code by all gametypes present in vanilla CoD4:MW
When adding a new gametype don't forget to insert the name of your new gametype in _gametypes.txt, no mod tools are required tbh, just pack your new files in an .iwd
2 -
delete ALL files from %APPDATA% path and from regedit (Registery).
.. and have fun reinstalling windows #BosnianTellingCrapAgain :dave:
How that "anti-piracy" bussiness works:
- Some law company finds random IPs
- Then they make a case on court acusing owners of these IP adresses of piracy/copyright infrigment, but due to lack of evidence it gets dismissed
- That company asks court for documentations from dismissed case to get your personal information (name, surname, address, etc)
- They send you a letter with bill to pay, which is NOT legally binding
1.If you're stupid you'll pay the bill and thus admit that you've pirated software/movie/music/etc, it will NOT protect you from legal actions against you, now publishers/authors can sue you.
2. You ignore the letter and bill and be happy
0 -
I like the detail, lighting and use of visual effects in your map and I respect your hard work, but other than that I don't like the layout.
reps for your work tho!
2 -
I guess thats why Bear told you nested arrays are _sometimes_ bad https://en.wikipedia.org/wiki/Loop_interchange#Caveat
0 -
the laziest way is to use qsort(), copy your arrays, sort them with qsort and... profit?
the faster way is
getHighestValue( float **array, unsigned int xSize, unsigned int YSize ) { float highestVal = 0.0f; unsigned int x, y; for( x = 0; x < xSize; x++ ) { for( y = 0; y < ySize; y++ ) { if( array[x][y] > highestVal ) highestVal = array[x][y]; } } return highestVal; } void test() { float v1, v2, diff; v1 = getHighestValue( array1, 10, 10 ); v2 = getHighestValue( array2, 10, 10 ); if( v1 == v2 ) { printf( "both arrays have the highest value of: %f \n", v1 ); return; } diff = v1-v2; if( !diff ) diff = !diff; printf( "the diference between two highest values in arrays is equal to: %f \n", diff ); }You guys are all aliens and speak another language.
1 -
ill just say that your algorithm is extremely inefficient :sir: nested loops are bad mmkay? on a grid of 10000 x 10000 that code would take probably tens of minutes to finish :dumb:
At least his cache access prediction never misses #gottafindthegoodsides :awesome:
0 -
You could improve your loops by simplifing them where possible
this:
//Calculate next grid fill. Multiply by .25 because faster than division by 1/4. while (iterations != 0) { for (i = 1; i <= 9; i++) { for (j = 1; j <= 9; j++) { array2[i][j] = ((array1[i-1][j] + array1[i+1][j] + array1[i][j-1] + array1[i][j+1]) * 0.25); } } aTemp[i][j] = array2[i][j]; array1[i][j] = aTemp[i][j]; iterations--; counter++; }becomes:
for (; iterations != 0; iterations--, counter++) { for( i=1; i<= 9; i++) for (j = 1; j <= 9; j++) // no need for { } when a looped code contains just one ";" array2[i][j] = ((array1[i-1][j] + array1[i+1][j] + array1[i][j-1] + array1[i][j+1]) * 0.25); // !!! these two are probably your bugs - you're using [i][j] outside of f/f loops !!! // THEY ARE ALWAYS: // aTemp[9][9] = array2[9][9]; // array1[9][9] = aTemp[9][9]; // oh, and are you sure you need aTemp (not referenced anywhere but here) to set a1 to a value from a2 [array1[9][9] = array2[9][9]]? and why are you doin' that? (im 2 sleepy to re-read your 1st post) aTemp[i][j] = array2[i][j]; array1[i][j] = aTemp[i][j]; }My personal note: I'd probably replace i/j with x/y as it's more "2d" ;>
Delete my comment if it's necessery
:no:!
is the way to deal with your posts :angryarnold:1 -
CYKA BLYAT P90 NOOB FUCKING NOOB CYKA BLYAT CYKA CYKA BITCH NOOB
IDI TI NA HUI JOBANY W ZOLHU :ANGRYARNOLD:
VODKA.
STALIN.
BALALAIKA. :ANGRYARNOLD:
0 -
It's not even a proper config and definitely won't make your FPS higher, do you know you could change all of these (except cheat protected dvars which wont work in mp) in the graphic options menu? :dumb:
If it ever was made to 'improve fps' then why is r_drawdecals & r_detail 1? :wat:
I'd say stop posting shit you've copied from other forums when you basically just up your post count making such trashy topics all over the forums
2 -
Oh... are you Blyatman lmao, you messaged me yesterday and I didn't know who the heck you were xD
Anyways, noice
in case you don't know, i'm the cykaman (but you don't have me on steam) :troll:
0 -
Both are overpriced as fuck and you should forget these offers. I'm not saying G3258 is bad, it's actually quite good but it's unacceptable to have this cheap CPU with one of cheapest Z97 mobo - it is a ripoff.
+1 to brrrbrr
edit:
I would say fuck AMD because of their performance and heat issues but it's very good for the price but for the second PC with the intel Pentium CPU is quite good but the only minus point is that it runs so high at the GHZ that it needs good cooling.
This mobo is very good :P
Anyways, I prefer to build my own PC since you can get maybe cheaper then normaly and btw if you wonder there is already a DDR4 RAM sockets and this motherboard has DDR3 RAM sockets. So 1 gen behind and DDR4 is alot faster.Had to downvote bosnian for his crap PC advices... again.
AMD (with no OC) will be quite a lot cooler than Intel, thanks to the shitty thermal compound under heat spreader on every single intel cpu since core 3rd gen. G3258 is rated ~55 TDP, meaning even a box cooler can keep it in good temp. after OC to even 4.3GHz. A cheap cooler with 2 heatpipes for £10 will also keep it quiet.
On last note, so far DDR4 is slower than DDR3 - just see these goddamn insanely high timings.
Edit2:
"Stealth Package" for £760.12 vs. this lulz build (no case included, but these are cheap anyway, don't take this build sirius plox):

DECENT 500 GB SSD, BECAUSE WHY NOT :angryarnold:
JUST A LITTLE BETTER GPU TO DEMONSTRATE HOW THEY'RE TRYING TO RIP YOU OFF FROM YOUR DO$H :angryarnold:
A LOT BETTER PSU AND NOT SOME NO-NAME SHIT :angryarnold: NOT LIKE YOU'D NEED SO MUCH POWER :angryarnold:
COSTS £323 LESS :angryarnold: SO YOU CAN ALSO GRAB A CPU COOLER, A CASE AND BUY ARNOLD A DRINK :angryarnold:
... just kidding, ARNOLD DOESN'T DRINK! grab I5-4690k and not Pentium and GTX970 :angryarnold:
0 -
looks crap :dave: i can do better in paint :dave:
1 -
looks more 3D
but it's just a texture :wat:
ontopic: how about you blend texture1 with texture 2?
0 -
Next match was a 33 killstreak topfrag!
Bosnian, do you know what is a "killstreak"? :dumb:
4 -
quick launch the servers into space to stop the invasion!
But britain cannot into space either
#edit: and for as long as bear is the admin, the server is too fat to be sent into space
2 -
It's been planned carefuly and realized step by step, it's time I retake raid gaming :ph34r:
10
.. and then there's
in General Help
Posted · Report post
see raw\radiant\keys.txt :dave: