Quantcast
Channel: Civilization Fanatics' Forums
Viewing all articles
Browse latest Browse all 12856

RFC Europe Stability Cheat

$
0
0
Hello! long time reader, first time poster
In standard RFC (as well as in doc) there is an option to manually increase player's stability (shift+alt+q to enable the mode and shift+alt+s to gain 10 stability points). But it doesn't apply to RFC Eu afaik.

I tried adding this code to Python
Spoiler:
if ( eventType == self.EventKeyDown and theKey == int(InputTypes.KB_Q) and self.eventManager.bAlt and self.eventManager.bShift):
print("SHIFT-ALT-Q") #enables squatting
self.rnf.setCheatMode(True);
CyInterface().addMessage(utils.getHumanID(), True, con.iDuration, "EXPLOITER!!! ;)", "", 0, "", ColorTypes(con.iRed), -1, -1, True, True)

#Stability Cheat
if self.rnf.getCheatMode() and theKey == int(InputTypes.KB_S) and self.eventManager.bAlt and self.eventManager.bShift:
print("SHIFT-ALT-S") #boosts stability by +10 for the human player
utils.setStability(utils.getHumanID(), utils.getStability(utils.getHumanID())+10)
gc.getPlayer(utils.getHumanID()).changeStability(1 0) # test DLL
but it doesn't work.
So is there any way to manually increase a player's stability? Sometimes I like to play crazy games like Polish Jihad on England and i'd hate losing the game due to collapsing.
May be there is some tinkering i can do with python or WB?

Viewing all articles
Browse latest Browse all 12856

Trending Articles