APB Reloaded

主題列表 登入
四星黃金會員 #1
有冇人識轉APB入面既背景效果
http://www.youtube.com/watch?v=oILooQFghG4
好似影片紙板噤既背景
四星黃金會員 #2
本帖最後由 hcs999 於 13-1-1 03:19 PM 編輯

Shaders
http://forums.gamersfirst.com/to ... acting-crap-config/
http://forums.gamersfirst.com/to ... restoration-project


http://forums.gamersfirst.com/to ... ization-megathread/
四星黃金會員 #3
唔該曬~再問一問邊隻似影片入面個隻?~?
四星黃金會員 #4
回覆 仙跡 的帖子

not clear,
我都係用RTW shader

不過應該係D border shaders
something like this: http://www.youtube.com/watch?v=iqjcIsDjcdw
四星黃金會員 #5
你呢隻又好似太灰~~~
二星初級會員 #6
會唔會BAN嫁
因為畢竟也要改動D file
四星黃金會員 #7
nop, 係個gray area

改file Punkbuster知, 但係都唔會ban

連 dot/shader crosshair APB Mods都話依家暫時唔會ban

一星新手會員 #8
回覆 hcs999 的帖子

我想整個Cross hair
我搵到個網   但係唔係好睇得明D英文
我依家果個Cross hair唔係本身想整果個
可唔可以幫幫手?

OK的話聽日PM你

Thx
四星黃金會員 #9
回覆 a26181314 的帖子

1) Copy D file
2)crosshair settings 改screen resolution, 開cross hair (crossXXXXXX:0 -> crossXXXXXX:1)
0=唔開, 1 = 開


###一定要開high quality bloom####

大約係咁啦, 不過自從上次repair 完我就用唔到- -
不過可以教你用
四星黃金會員 #10
Found it!
http://www.youtube.com/watch?v=13-pyVDpB44

Video discription
一星新手會員 #11
回覆 hcs999 的帖子

多謝你先

我睇過依個網
#//forums.gamersfirst.com/topic/298190-universal-shader-crosshair/

想整依個人個HairCross   
#//zh-tw.twitch.tv/grlfflth/c/1757578

白色   GAME像素 1024x768

但係整在第二隻

幫幫手  THX

#=http:
一星新手會員 #12
回覆 hcs999 的帖子

我個Crosshair Setting (txt) 係咁
唔知要點樣改
/***************************************************************************************/
/*! \file CrosshairSettings.usf
*
* Configuration options for modular crosshair
*
*
* Owned by dreamss, some code stolen from tobii and spec
*
* variable crosshair size added by Kimiko
* and pretty much every change after that ... DYNAMIC_COLOR, internal color options, and making it work on rtw/1.9.1 shaders
* fuckshadercoding
*
* Thanks to Blizzie for the alternative crosshair shapes Dot 2, Circle, and Cross
* Thanks to Inteoix for OPGL-shaped crosshairs and pointing out how to fix alpha
*
*
* Usage:
*   See below for what each setting does, and edit to your liking.
*
* DONT FORGET TO EDIT SCREEN_SIZE_X and SCREEN_SIZE_Y
*
* IF THE GAME CRASHES CROSSHAIR_SIZE IS WAY TOO BIG!
****************************************************************************************/

{
// 1 = enable
#define ENABLE_CROSSHAIR 1
#define ENABLE_CROSSHAIR_DOT_1 0
#define ENABLE_CROSSHAIR_DOT_2 0
#define ENABLE_CROSSHAIR_TOP_CHEVRON 0
#define ENABLE_CROSSHAIR_BOTTOM_CHEVRON 0
#define ENABLE_CROSSHAIR_CIRCLE 0
#define ENABLE_CROSSHAIR_CROSS 1
#define ENABLE_CROSSHAIR_OPGL 0
#define ENABLE_CROSSHAIR_SQUARE 0
#define ENABLE_CROSSHAIR_DIAMOND 0

// User created crosshairs (not included). default filenames are CrosshairCustom1.usf CrosshairCustom2.usf CrosshairCustom3.usf CrosshairCustom4.usf CrosshairCustom5.usf
#define ENABLE_CROSSHAIR_CUSTOM_1 0
#define ENABLE_CROSSHAIR_CUSTOM_2 0
#define ENABLE_CROSSHAIR_CUSTOM_3 0
#define ENABLE_CROSSHAIR_CUSTOM_4 0
#define ENABLE_CROSSHAIR_CUSTOM_5 0


// Monitor resolution, INCLUDE THE .0 OR OTHER THINGS BREAK!!!
#define SCREEN_SIZE_X 1900.0
#define SCREEN_SIZE_Y 900.0


// Limit the area at the center to check where to draw the crosshair. We dont want to run on every pixel do we?
// Set it bigger if your crosshair gets cutoff
// 0.0-100.0 where 100 means scan 100% of the screen
#define CROSSHAIR_PIXEL_SCAN_LIMIT 8.0


// Dot 1 shape settings
#define CROSSHAIR_DOT_1_SIZE .6
// R, G, B, Alpha with a range of 0.0 to 1.0
#define IN_CROSSHAIR_DOT_1_COLOR float4( 1.0, 0.4, 1.0, 0.5)
#define OUT_CROSSHAIR_DOT_1_COLOR float4( 1.0, 0.4, 1.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define IN_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0
#define OUT_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0


// Blizzie dot shape settings
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DOT_2_COLOR float4(1.0, 0.0, 0.0, 0.1)


// Chevron aspect ratio settings, leave this alone for a standard 90 degree spacing. Don't touch if you don't know what you're doing.
#define chevronaspectRatio SCREEN_SIZE_Y/SCREEN_SIZE_X

// Top chevron shape settings
#define CROSSHAIR_TOP_CHEVRON_THICKNESS .001
#define CROSSHAIR_TOP_CHEVRON_SIZE .01
#define CROSSHAIR_TOP_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_TOP_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_TOP_CHEVRON_DYNAMIC_COLOR 0


// Bottom chevron shape settings
#define CROSSHAIR_BOTTOM_CHEVRON_THICKNESS .001
#define CROSSHAIR_BOTTOM_CHEVRON_SIZE .01
#define CROSSHAIR_BOTTOM_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_BOTTOM_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_BOTTOM_CHEVRON_DYNAMIC_COLOR 0


// Circle shape settings - credit: Blizzie
#define CROSSHAIR_CIRCLE_RADIUS  .023
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CIRCLE_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CIRCLE_DYNAMIC_COLOR 0


// Cross shape settings - credit: Blizzie
#define CROSSHAIR_CROSS_SIZE .01
#define CROSSHAIR_CROSS_THICKNESS .000417
#define CROSSHAIR_CROSS_BORDER_THICKNESS .000417
#define CROSSHAIR_CROSS_GAP .005                          // Set this to 0.0 for no center gap
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CROSS_INNER_COLOR float4(1.0, 1.0, 1.0, 0.5)
#define CROSSHAIR_CROSS_BORDER_COLOR float4(0.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CROSS_INNER_DYNAMIC_COLOR 0
#define CROSSHAIR_CROSS_BORDER_DYNAMIC_COLOR 0


// OPGL shape settings - credit: Inteoix
#define CROSSHAIR_OPGL_RADIUS 0.00575
#define CROSSHAIR_OPGL_WIDTH 0.0015
#define CROSSHAIR_OPGL_CUTOFF 0.65
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_OPGL_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_OPGL_DYNAMIC_COLOR 1


// Square shape settings
// These *should* be after aspect ratio correction, making them appear the same size.
#define CROSSHAIR_SQUARE_HEIGHT 0.01
#define CROSSHAIR_SQUARE_WIDTH 0.01
#define CROSSHAIR_SQUARE_THICKNESS 0.001
// SMALL values here, will create a gap in the center of each side
#define CROSSHAIR_SQUARE_HORIZ_GAP 0.005
#define CROSSHAIR_SQUARE_VERT_GAP 0.005
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_SQUARE_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_SQUARE_DYNAMIC_COLOR 0


// Diamond shape settings - credit: Kimiko
#define CROSSHAIR_DIAMOND_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_ENABLE 1
#define CROSSHAIR_DIAMOND_OUTLINE_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_INSIDE_THICKNESS 0.0
#define CROSSHAIR_DIAMOND_SIZE 0.01
#define CROSSHAIR_DIAMOND_ANGLE 1.0 // not yet implemented!
#define CROSSHAIR_DIAMOND_GAP 0.01 // currently buggy, set to same value as SIZE for best results
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DIAMOND_COLOR float4( 1.0, 0.0, 0.0, 0.75 )
#define CROSSHAIR_DIAMOND_OUTLINE_COLOR float4( 0.0, 0.0, 0.0, 1.0 )
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_DIAMOND_DYNAMIC_COLOR 0


//MAKE SURE THIS FILES EXIST!!!!
//THIS SETTING IS NOT USED.
#define CROSSHAIR_CUSTOM_1_NAME "CrosshairCustom1.usf"
#define CROSSHAIR_CUSTOM_2_NAME "CrosshairCustom2.usf"
#define CROSSHAIR_CUSTOM_3_NAME "CrosshairCustom3.usf"
#define CROSSHAIR_CUSTOM_4_NAME "CrosshairCustom4.usf"
#define CROSSHAIR_CUSTOM_5_NAME "CrosshairCustom5.usf"
}
一星新手會員 #13
回覆 hcs999 的帖子

我諗你比錯左條片我睇
條片係講AK

我依家做完COPY FILES個STEP

STEP 2  改CrossHairSetting

之前試過做
但係唔到我想要果隻CrossHair
同埋SET左個GAME解像都入唔到GAME (1024X768)


唔該
四星黃金會員 #14
本帖最後由 hcs999 於 13-1-4 05:24 PM 編輯

回覆 a26181314 的帖子

1) 系crosshair
2) 要開high quality bloom
3) APB ingame resolution 一定要等一於 CrosshairSettings.usg 個resolution
4) which one do you want? The link is dead - -



已經幫你改左mon resolution 同開左cross

/***************************************************************************************/
/*! \file CrosshairSettings.usf
*
* Configuration options for modular crosshair
*
*
* Owned by dreamss, some code stolen from tobii and spec
*
* variable crosshair size added by Kimiko
* and pretty much every change after that ... DYNAMIC_COLOR, internal color options, and making it work on rtw/1.9.1 shaders
* fuckshadercoding
*
* Thanks to Blizzie for the alternative crosshair shapes Dot 2, Circle, and Cross
* Thanks to Inteoix for OPGL-shaped crosshairs and pointing out how to fix alpha
*
*
* Usage:
*   See below for what each setting does, and edit to your liking.
*
* DONT FORGET TO EDIT SCREEN_SIZE_X and SCREEN_SIZE_Y
*
* IF THE GAME CRASHES CROSSHAIR_SIZE IS WAY TOO BIG!
****************************************************************************************/

{
// 1 = enable
#define ENABLE_CROSSHAIR 1
#define ENABLE_CROSSHAIR_DOT_1 0
#define ENABLE_CROSSHAIR_DOT_2 0
#define ENABLE_CROSSHAIR_TOP_CHEVRON 0
#define ENABLE_CROSSHAIR_BOTTOM_CHEVRON 0
#define ENABLE_CROSSHAIR_CIRCLE 0
#define ENABLE_CROSSHAIR_CROSS 1
#define ENABLE_CROSSHAIR_OPGL 0
#define ENABLE_CROSSHAIR_SQUARE 0
#define ENABLE_CROSSHAIR_DIAMOND 0

// User created crosshairs (not included). default filenames are CrosshairCustom1.usf CrosshairCustom2.usf CrosshairCustom3.usf CrosshairCustom4.usf CrosshairCustom5.usf
#define ENABLE_CROSSHAIR_CUSTOM_1 0
#define ENABLE_CROSSHAIR_CUSTOM_2 0
#define ENABLE_CROSSHAIR_CUSTOM_3 0
#define ENABLE_CROSSHAIR_CUSTOM_4 0
#define ENABLE_CROSSHAIR_CUSTOM_5 0


// Monitor resolution, INCLUDE THE .0 OR OTHER THINGS BREAK!!!
#define SCREEN_SIZE_X 1024.0
#define SCREEN_SIZE_Y 768.0


// Limit the area at the center to check where to draw the crosshair. We dont want to run on every pixel do we?
// Set it bigger if your crosshair gets cutoff
// 0.0-100.0 where 100 means scan 100% of the screen
#define CROSSHAIR_PIXEL_SCAN_LIMIT 8.0


// Dot 1 shape settings
#define CROSSHAIR_DOT_1_SIZE .8
//thickness of the dot outline, make number bigger if it cant be seen
#define CROSSHAIR_DOT_1_OUT_SIZE_MULTI 2.0
// R, G, B, Alpha with a range of 0.0 to 1.0
#define IN_CROSSHAIR_DOT_1_COLOR float4( 1.0, 1.0, 1.0, 0.5)
#define OUT_CROSSHAIR_DOT_1_COLOR float4( 0.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define IN_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0
#define OUT_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0


// Blizzie dot shape settings
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DOT_2_COLOR float4(1.0, 0.0, 0.0, 0.1)


// Chevron aspect ratio settings, leave this alone for a standard 90 degree spacing. Don't touch if you don't know what you're doing.
#define chevronaspectRatio SCREEN_SIZE_Y/SCREEN_SIZE_X

// Top chevron shape settings
#define CROSSHAIR_TOP_CHEVRON_THICKNESS .001
#define CROSSHAIR_TOP_CHEVRON_SIZE .01
#define CROSSHAIR_TOP_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_TOP_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_TOP_CHEVRON_DYNAMIC_COLOR 0


// Bottom chevron shape settings
#define CROSSHAIR_BOTTOM_CHEVRON_THICKNESS .001
#define CROSSHAIR_BOTTOM_CHEVRON_SIZE .01
#define CROSSHAIR_BOTTOM_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_BOTTOM_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_BOTTOM_CHEVRON_DYNAMIC_COLOR 0


// Circle shape settings - credit: Blizzie
#define CROSSHAIR_CIRCLE_RADIUS  .023
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CIRCLE_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CIRCLE_DYNAMIC_COLOR 0


// Cross shape settings - credit: Blizzie
#define CROSSHAIR_CROSS_SIZE .02
#define CROSSHAIR_CROSS_THICKNESS .000417
#define CROSSHAIR_CROSS_BORDER_THICKNESS .000417
#define CROSSHAIR_CROSS_GAP .005                          // Set this to 0.0 for no center gap
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CROSS_INNER_COLOR float4(1.0, 1.0, 1.0, 0.5)
#define CROSSHAIR_CROSS_BORDER_COLOR float4(1.0, 1.0, 1.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CROSS_INNER_DYNAMIC_COLOR 0
#define CROSSHAIR_CROSS_BORDER_DYNAMIC_COLOR 0


// OPGL shape settings - credit: Inteoix
#define CROSSHAIR_OPGL_RADIUS 0.00575
#define CROSSHAIR_OPGL_WIDTH 0.0015
#define CROSSHAIR_OPGL_CUTOFF 0.65
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_OPGL_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_OPGL_DYNAMIC_COLOR 1


// Square shape settings
// These *should* be after aspect ratio correction, making them appear the same size.
#define CROSSHAIR_SQUARE_HEIGHT 0.01
#define CROSSHAIR_SQUARE_WIDTH 0.01
#define CROSSHAIR_SQUARE_THICKNESS 0.001
// SMALL values here, will create a gap in the center of each side
#define CROSSHAIR_SQUARE_HORIZ_GAP 0.005
#define CROSSHAIR_SQUARE_VERT_GAP 0.005
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_SQUARE_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_SQUARE_DYNAMIC_COLOR 0


// Diamond shape settings - credit: Kimiko
#define CROSSHAIR_DIAMOND_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_ENABLE 1
#define CROSSHAIR_DIAMOND_OUTLINE_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_INSIDE_THICKNESS 0.0
#define CROSSHAIR_DIAMOND_SIZE 0.01
#define CROSSHAIR_DIAMOND_ANGLE 1.0 // not yet implemented!
#define CROSSHAIR_DIAMOND_GAP 0.01 // currently buggy, set to same value as SIZE for best results
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DIAMOND_COLOR float4( 1.0, 0.0, 0.0, 0.75 )
#define CROSSHAIR_DIAMOND_OUTLINE_COLOR float4( 0.0, 0.0, 0.0, 1.0 )
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_DIAMOND_DYNAMIC_COLOR 0


//MAKE SURE THIS FILES EXIST!!!!
//THIS SETTING IS NOT USED.
#define CROSSHAIR_CUSTOM_1_NAME "CrosshairCustom1.usf"
#define CROSSHAIR_CUSTOM_2_NAME "CrosshairCustom2.usf"
#define CROSSHAIR_CUSTOM_3_NAME "CrosshairCustom3.usf"
#define CROSSHAIR_CUSTOM_4_NAME "CrosshairCustom4.usf"
#define CROSSHAIR_CUSTOM_5_NAME "CrosshairCustom5.usf"
}
一星新手會員 #15
回覆 hcs999 的帖子

唔該你  不過都係整唔到我想要果個

我整左圖左果個
我係想要圖右果個

如果死Link話比我知
*//upload.lyfhk.net/?pm=5SD2

*http:
一星新手會員 #16
依家的CrossHair Setting (txt)

/***************************************************************************************/
/*! \file CrosshairSettings.usf
*
* Configuration options for modular crosshair
*
*
* Owned by dreamss, some code stolen from tobii and spec
*
* variable crosshair size added by Kimiko
* and pretty much every change after that ... DYNAMIC_COLOR, internal color options, and making it work on rtw/1.9.1 shaders
* fuckshadercoding
*
* Thanks to Blizzie for the alternative crosshair shapes Dot 2, Circle, and Cross
* Thanks to Inteoix for OPGL-shaped crosshairs and pointing out how to fix alpha
*
*
* Usage:
*   See below for what each setting does, and edit to your liking.
*
* DONT FORGET TO EDIT SCREEN_SIZE_X and SCREEN_SIZE_Y
*
* IF THE GAME CRASHES CROSSHAIR_SIZE IS WAY TOO BIG!
****************************************************************************************/

{
// 1 = enable
#define ENABLE_CROSSHAIR 1
#define ENABLE_CROSSHAIR_DOT_1 0
#define ENABLE_CROSSHAIR_DOT_2 0
#define ENABLE_CROSSHAIR_TOP_CHEVRON 0
#define ENABLE_CROSSHAIR_BOTTOM_CHEVRON 0
#define ENABLE_CROSSHAIR_CIRCLE 0
#define ENABLE_CROSSHAIR_CROSS 1
#define ENABLE_CROSSHAIR_OPGL 0
#define ENABLE_CROSSHAIR_SQUARE 0
#define ENABLE_CROSSHAIR_DIAMOND 0

// User created crosshairs (not included). default filenames are CrosshairCustom1.usf CrosshairCustom2.usf CrosshairCustom3.usf CrosshairCustom4.usf CrosshairCustom5.usf
#define ENABLE_CROSSHAIR_CUSTOM_1 0
#define ENABLE_CROSSHAIR_CUSTOM_2 0
#define ENABLE_CROSSHAIR_CUSTOM_3 0
#define ENABLE_CROSSHAIR_CUSTOM_4 0
#define ENABLE_CROSSHAIR_CUSTOM_5 0


// Monitor resolution, INCLUDE THE .0 OR OTHER THINGS BREAK!!!
#define SCREEN_SIZE_X 1024.0
#define SCREEN_SIZE_Y 768.0


// Limit the area at the center to check where to draw the crosshair. We dont want to run on every pixel do we?
// Set it bigger if your crosshair gets cutoff
// 0.0-100.0 where 100 means scan 100% of the screen
#define CROSSHAIR_PIXEL_SCAN_LIMIT 8.0


// Dot 1 shape settings
#define CROSSHAIR_DOT_1_SIZE .8
//thickness of the dot outline, make number bigger if it cant be seen
#define CROSSHAIR_DOT_1_OUT_SIZE_MULTI 2.0
// R, G, B, Alpha with a range of 0.0 to 1.0
#define IN_CROSSHAIR_DOT_1_COLOR float4( 1.0, 1.0, 1.0, 0.5)
#define OUT_CROSSHAIR_DOT_1_COLOR float4( 0.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define IN_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0
#define OUT_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0


// Blizzie dot shape settings
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DOT_2_COLOR float4(1.0, 0.0, 0.0, 0.1)


// Chevron aspect ratio settings, leave this alone for a standard 90 degree spacing. Don't touch if you don't know what you're doing.
#define chevronaspectRatio SCREEN_SIZE_Y/SCREEN_SIZE_X

// Top chevron shape settings
#define CROSSHAIR_TOP_CHEVRON_THICKNESS .001
#define CROSSHAIR_TOP_CHEVRON_SIZE .01
#define CROSSHAIR_TOP_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_TOP_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_TOP_CHEVRON_DYNAMIC_COLOR 0


// Bottom chevron shape settings
#define CROSSHAIR_BOTTOM_CHEVRON_THICKNESS .001
#define CROSSHAIR_BOTTOM_CHEVRON_SIZE .01
#define CROSSHAIR_BOTTOM_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_BOTTOM_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_BOTTOM_CHEVRON_DYNAMIC_COLOR 0


// Circle shape settings - credit: Blizzie
#define CROSSHAIR_CIRCLE_RADIUS  .023
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CIRCLE_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CIRCLE_DYNAMIC_COLOR 0


// Cross shape settings - credit: Blizzie
#define CROSSHAIR_CROSS_SIZE .01
#define CROSSHAIR_CROSS_THICKNESS .000417
#define CROSSHAIR_CROSS_BORDER_THICKNESS .000417
#define CROSSHAIR_CROSS_GAP .005                          // Set this to 0.0 for no center gap
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CROSS_INNER_COLOR float4(1.0, 1.0, 1.0, 0.5)
#define CROSSHAIR_CROSS_BORDER_COLOR float4(0.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CROSS_INNER_DYNAMIC_COLOR 0
#define CROSSHAIR_CROSS_BORDER_DYNAMIC_COLOR 0


// OPGL shape settings - credit: Inteoix
#define CROSSHAIR_OPGL_RADIUS 0.00575
#define CROSSHAIR_OPGL_WIDTH 0.0015
#define CROSSHAIR_OPGL_CUTOFF 0.65
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_OPGL_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_OPGL_DYNAMIC_COLOR 1


// Square shape settings
// These *should* be after aspect ratio correction, making them appear the same size.
#define CROSSHAIR_SQUARE_HEIGHT 0.01
#define CROSSHAIR_SQUARE_WIDTH 0.01
#define CROSSHAIR_SQUARE_THICKNESS 0.001
// SMALL values here, will create a gap in the center of each side
#define CROSSHAIR_SQUARE_HORIZ_GAP 0.005
#define CROSSHAIR_SQUARE_VERT_GAP 0.005
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_SQUARE_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_SQUARE_DYNAMIC_COLOR 0


// Diamond shape settings - credit: Kimiko
#define CROSSHAIR_DIAMOND_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_ENABLE 1
#define CROSSHAIR_DIAMOND_OUTLINE_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_INSIDE_THICKNESS 0.0
#define CROSSHAIR_DIAMOND_SIZE 0.01
#define CROSSHAIR_DIAMOND_ANGLE 1.0 // not yet implemented!
#define CROSSHAIR_DIAMOND_GAP 0.01 // currently buggy, set to same value as SIZE for best results
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DIAMOND_COLOR float4( 1.0, 0.0, 0.0, 0.75 )
#define CROSSHAIR_DIAMOND_OUTLINE_COLOR float4( 0.0, 0.0, 0.0, 1.0 )
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_DIAMOND_DYNAMIC_COLOR 0


//MAKE SURE THIS FILES EXIST!!!!
//THIS SETTING IS NOT USED.
#define CROSSHAIR_CUSTOM_1_NAME "CrosshairCustom1.usf"
#define CROSSHAIR_CUSTOM_2_NAME "CrosshairCustom2.usf"
#define CROSSHAIR_CUSTOM_3_NAME "CrosshairCustom3.usf"
#define CROSSHAIR_CUSTOM_4_NAME "CrosshairCustom4.usf"
#define CROSSHAIR_CUSTOM_5_NAME "CrosshairCustom5.usf"
}

另外想問下
如果唔係high quality 會點
四星黃金會員 #17
回覆 a26181314 的帖子

1: 我比你果個就係開左cross, 不過你可以較個 gap 你係想有gap 定係冇?

2: 唔開high quality bloom (NOT High Quality)就用唔到

仲有, 係crosshair(十字準線/準星)
一星新手會員 #18
回覆 hcs999 的帖子

我想較無GAP  
個十字癡住
好似  *//upload.lyfhk.net/?pm=5SD2  圖右咁

*=http

thx a lot
四星黃金會員 #19
<div id="code">/***************************************************************************************/
/*! \file CrosshairSettings.usf
*
* Configuration options for modular crosshair
*
*
* Owned by dreamss, some code stolen from tobii and spec
*
* variable crosshair size added by Kimiko
* and pretty much every change after that ... DYNAMIC_COLOR, internal color options, and making it work on rtw/1.9.1 shaders
* fuckshadercoding
*
* Thanks to Blizzie for the alternative crosshair shapes Dot 2, Circle, and Cross
* Thanks to Inteoix for OPGL-shaped crosshairs and pointing out how to fix alpha
*
*
* Usage:
*   See below for what each setting does, and edit to your liking.
*
* DONT FORGET TO EDIT SCREEN_SIZE_X and SCREEN_SIZE_Y
*
* IF THE GAME CRASHES CROSSHAIR_SIZE IS WAY TOO BIG!
****************************************************************************************/

{
// 1 = enable
#define ENABLE_CROSSHAIR 1
#define ENABLE_CROSSHAIR_DOT_1 0
#define ENABLE_CROSSHAIR_DOT_2 0
#define ENABLE_CROSSHAIR_TOP_CHEVRON 0
#define ENABLE_CROSSHAIR_BOTTOM_CHEVRON 0
#define ENABLE_CROSSHAIR_CIRCLE 0
#define ENABLE_CROSSHAIR_CROSS 1
#define ENABLE_CROSSHAIR_OPGL 0
#define ENABLE_CROSSHAIR_SQUARE 0
#define ENABLE_CROSSHAIR_DIAMOND 0

// User created crosshairs (not included). default filenames are CrosshairCustom1.usf CrosshairCustom2.usf CrosshairCustom3.usf CrosshairCustom4.usf CrosshairCustom5.usf
#define ENABLE_CROSSHAIR_CUSTOM_1 0
#define ENABLE_CROSSHAIR_CUSTOM_2 0
#define ENABLE_CROSSHAIR_CUSTOM_3 0
#define ENABLE_CROSSHAIR_CUSTOM_4 0
#define ENABLE_CROSSHAIR_CUSTOM_5 0


// Monitor resolution, INCLUDE THE .0 OR OTHER THINGS BREAK!!!
#define SCREEN_SIZE_X 1024.0
#define SCREEN_SIZE_Y 768.0


// Limit the area at the center to check where to draw the crosshair. We dont want to run on every pixel do we?
// Set it bigger if your crosshair gets cutoff
// 0.0-100.0 where 100 means scan 100% of the screen
#define CROSSHAIR_PIXEL_SCAN_LIMIT 8.0


// Dot 1 shape settings
#define CROSSHAIR_DOT_1_SIZE .8
//thickness of the dot outline, make number bigger if it cant be seen
#define CROSSHAIR_DOT_1_OUT_SIZE_MULTI 2.0
// R, G, B, Alpha with a range of 0.0 to 1.0
#define IN_CROSSHAIR_DOT_1_COLOR float4( 1.0, 1.0, 1.0, 0.5)
#define OUT_CROSSHAIR_DOT_1_COLOR float4( 0.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define IN_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0
#define OUT_CROSSHAIR_DOT_1_DYNAMIC_COLOR 0


// Blizzie dot shape settings
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DOT_2_COLOR float4(1.0, 0.0, 0.0, 0.1)


// Chevron aspect ratio settings, leave this alone for a standard 90 degree spacing. Don't touch if you don't know what you're doing.
#define chevronaspectRatio SCREEN_SIZE_Y/SCREEN_SIZE_X

// Top chevron shape settings
#define CROSSHAIR_TOP_CHEVRON_THICKNESS .001
#define CROSSHAIR_TOP_CHEVRON_SIZE .01
#define CROSSHAIR_TOP_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_TOP_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_TOP_CHEVRON_DYNAMIC_COLOR 0


// Bottom chevron shape settings
#define CROSSHAIR_BOTTOM_CHEVRON_THICKNESS .001
#define CROSSHAIR_BOTTOM_CHEVRON_SIZE .01
#define CROSSHAIR_BOTTOM_CHEVRON_GAP .003
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_BOTTOM_CHEVRON_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_BOTTOM_CHEVRON_DYNAMIC_COLOR 0


// Circle shape settings - credit: Blizzie
#define CROSSHAIR_CIRCLE_RADIUS  .023
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CIRCLE_COLOR float4(1.0, 0.0, 0.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CIRCLE_DYNAMIC_COLOR 0


// Cross shape settings - credit: Blizzie
#define CROSSHAIR_CROSS_SIZE .02
#define CROSSHAIR_CROSS_THICKNESS .000417
#define CROSSHAIR_CROSS_BORDER_THICKNESS .000417
#define CROSSHAIR_CROSS_GAP .000                          // Set this to 0.0 for no center gap
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_CROSS_INNER_COLOR float4(1.0, 1.0, 1.0, 0.5)
#define CROSSHAIR_CROSS_BORDER_COLOR float4(1.0, 1.0, 1.0, 0.5)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_CROSS_INNER_DYNAMIC_COLOR 0
#define CROSSHAIR_CROSS_BORDER_DYNAMIC_COLOR 0


// OPGL shape settings - credit: Inteoix
#define CROSSHAIR_OPGL_RADIUS 0.00575
#define CROSSHAIR_OPGL_WIDTH 0.0015
#define CROSSHAIR_OPGL_CUTOFF 0.65
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_OPGL_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_OPGL_DYNAMIC_COLOR 1


// Square shape settings
// These *should* be after aspect ratio correction, making them appear the same size.
#define CROSSHAIR_SQUARE_HEIGHT 0.01
#define CROSSHAIR_SQUARE_WIDTH 0.01
#define CROSSHAIR_SQUARE_THICKNESS 0.001
// SMALL values here, will create a gap in the center of each side
#define CROSSHAIR_SQUARE_HORIZ_GAP 0.005
#define CROSSHAIR_SQUARE_VERT_GAP 0.005
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_SQUARE_COLOR float4(1.0, 1.0, 1.0, 0.75)
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_SQUARE_DYNAMIC_COLOR 0


// Diamond shape settings - credit: Kimiko
#define CROSSHAIR_DIAMOND_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_ENABLE 1
#define CROSSHAIR_DIAMOND_OUTLINE_THICKNESS 0.001
#define CROSSHAIR_DIAMOND_OUTLINE_INSIDE_THICKNESS 0.0
#define CROSSHAIR_DIAMOND_SIZE 0.01
#define CROSSHAIR_DIAMOND_ANGLE 1.0 // not yet implemented!
#define CROSSHAIR_DIAMOND_GAP 0.01 // currently buggy, set to same value as SIZE for best results
// R, G, B, Alpha with a range of 0.0 to 1.0
#define CROSSHAIR_DIAMOND_COLOR float4( 1.0, 0.0, 0.0, 0.75 )
#define CROSSHAIR_DIAMOND_OUTLINE_COLOR float4( 0.0, 0.0, 0.0, 1.0 )
// Dynamic color - ignores color settings above (but uses alpha settings!!) and instead does roughly the inverse of whatever it's over.
#define CROSSHAIR_DIAMOND_DYNAMIC_COLOR 0


//MAKE SURE THIS FILES EXIST!!!!
//THIS SETTING IS NOT USED.
#define CROSSHAIR_CUSTOM_1_NAME "CrosshairCustom1.usf"
#define CROSSHAIR_CUSTOM_2_NAME "CrosshairCustom2.usf"
#define CROSSHAIR_CUSTOM_3_NAME "CrosshairCustom3.usf"
#define CROSSHAIR_CUSTOM_4_NAME "CrosshairCustom4.usf"
#define CROSSHAIR_CUSTOM_5_NAME "CrosshairCustom5.usf"
}</div>
一星新手會員 #20
回覆 hcs999 的帖子

編碼同我果個一樣  
我個CrossHair 係想咁整:
                w
                w
                w
wwwwwwwwwwwwwww
                w
                w
                w

依家係咁:
          w
     w       w
          w                           

係咪要係個SIZE到整?
下一頁
回到最頂傳統版

選擇頁數