View Single Post
  #1  
Unread 12th March, 2010, 12:20 AM
zunnie's Avatar
zunnie zunnie is offline
Rampage
 
Join Date: Nov 2004
Location: Netherlands
Posts: 74
Default MultiCore Force Core Usage

I googled some more to figure this out and the following is what i found, i think
some people around here might find it handy.
Also if anyone knows what values to use with systems with up to 8 cores i'd like to know that

CPU3 CPU2 CPU1 CPU0 Bin Hex
================================
OFF OFF OFF ON = 0001 = 1
OFF OFF ON OFF = 0010 = 2
OFF OFF ON ON = 0011 = 3
OFF ON OFF OFF = 0100 = 4
OFF ON OFF ON = 0101 = 5
OFF ON ON OFF = 0110 = 6
OFF ON ON ON = 0111 = 7
ON OFF OFF OFF = 1000 = 8
ON OFF OFF ON = 1001 = 9
ON OFF ON OFF = 1010 = A
ON OFF ON ON = 1011 = B
ON ON OFF OFF = 1100 = C
ON ON OFF ON = 1101 = D
ON ON ON OFF = 1110 = E
ON ON ON ON = 1111 = F

You use the HEX value for the /affinity switch..
IE in batchfile you enter:
Code:
c:
cd\
cd Servers\MP\UT3\ServerVCTF\Binaries
start /affinity 4 ut3-vctf.exe server VCTF-WinterBridge?Game=UTGameContent.UTVehicleCTFGame_Content?Mutator=R3PORTERv101.R3PORTER,RBTTNews.MutNews,TalkingIcon.TalkingIconMut,UT3Stats.UT3Stats,SkeetTeamRemix.SkeetTeamRemix?maxplayers=18?Numplay=6?MaxSpectators=2?TimeLimit=20?AdminPassword=xxx -login=xxx -password=xxx -nohomedir -configsubdir=vctfconfig -port=2020 -queryport=2021 -unattended
Reply With Quote