- SFXGameContent.SFXAI_Atlas.NotifyArmorDestroyed:
- destroying an armor piece causes 7% damage to max health?
- cyonan said other values for similar attacks are in coalesced? check
- however, not the atlases! but cyonan was getting 10% still? check new pcc in patch?
- okay it looks like this function is for destroying the COCKPIT (it jumps out of the function otherwise)
- cockpit health is set to 100,000 in multiplayer lol
- destroying an armor piece causes 7% damage to max health?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie] | |
| [smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/heart.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/images/forum/emoticons/joyful.png[/smilie][smilie]/i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void) popSceneWithTransition: (Class)c duration:(ccTime)t; |
Geth Trooper
- Weapon damage increased from 30 to 35
- (Bronze) Health increased from 750 to 825
- (Silver) Health increased from 1125 to 1238
- (Gold) Health increased from 1688 to 1856
Geth Pyro
- Damage of flamethrower increased from 50 to 65
- (Bronze) Shields increased from 750 to 1170
- (Silver) Shields increased from 1125 to 1755
PRELIM: Go here and download the nice, easy to use, coalesced editing utility.
bioinput.ini > sfxgamesfxgamemodebase- Scroll down to the bottom. In the empty line with an asterisk, type:
( Name="TCP_Fix", Command="CastPower 10" )
Hit enter.TCP_Fixcan be whatever you want, as long as it's unique.
- Scroll down to the bottom. In the empty line with an asterisk, type:
sfxgamemodedefault > bindings = (multiple)- Change the "Name" value of any of these necessary so that it matches your personal keybindings.
- Scroll down to the bottom. In the empty line with an asterisk, type:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ syntax and colors | |
| syntax on | |
| set t_Co=256 | |
| colorscheme pablo | |
| set cursorline | |
| highlight CursorLine cterm=NONE ctermbg=235 | |
| """ vim settings, not vi | |
| set nocompatible |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def numToBinary(N): | |
| if N==0: return '' | |
| else: return numToBinary(N/2)+str(N%2) | |
| def asciiString(S): | |
| rtn = "" | |
| next = "" | |
| for e in S: | |
| next = numToBinary(ord(e)) | |
| next = (8-len(next))*'0' + next + ' ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mobo | |
| ddr4 and max RAM speed | |
| num RAM slots and max RAM capacity | |
| chipset? | |
| number network ports and max LAN speed | |
| PCIxblah total used | |
| psu | |
| efficiency |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| in the python repl i can just hit shift+enter to add more lines, but if i do a block with : then how do i tell it the block is over? (unindent the next line) | |
| what's the unix time function good for? |
OlderNewer