VICE

From Valve Developer Community
Revision as of 12:45, 12 November 2007 by NovisItdel (talk | contribs)
Jump to navigation Jump to search

ferret cages online groceries book phone reverse puerto rico student air ticket unlisted phone cellular free phone prepaid addicts music edit software boyfriend gift idea iptv download mp3 karaoke downloads mp3 coach replica yoga star trek ringtones nokia ringtone code compact tractors for sale by owner chase manhatten bank nokia free ringtone mitsubishi 3000gt baltimore jobs kamagra nonprofit fundraising silverware job california laws bars munich secured credit cards phentermine online pharmacy toyota dealers atkins diet liver emergency cash netmeeting free online dating service earthlink casino on line cell phone number look up free swingers sony dvd camera sex vibrator leather headboards cheap viagra viagra chevy station wagon dominican republic kaspersky antivirus mexican singles dollar car rental woman boot tag heuer watch swinger chat slots healthy diet pond waterfalls pocket bike georgetown university smiley central discount shoes free ring tone california state tax msc cruises wedding rings beaded curtain diabetic diets mini trazodone munich pen smart amazing phone sportsbook new car comparison prilosec liver air canada airfare dvd downloads buy viagra cheap airfares cheap first class buy cheap cigarette alcoholism buy phentermine free boost ringtones colloidal silver long term personal loans best cd rate health and safety buy tramadol online adult gay sex box 2007 acura tl facials technomarine rhode island bass shoes outlet party swinger portugal truck tires

Default Key

If you do not know the encryption key of your mod, it's probably x9Ke0BY7 (the default for HL2DM). You should encrypt your script files so they can not easily be changed by users.

Changing Encrypted Weapon Scripts

To have the ability to change the weapon scripts, a mod user would have to delete the .ctx files and create the .txt files from scratch. This makes your mod more resistant to change, which means hosted servers won't as likely have changed the weapon scripts.

Availability

The source code of a Steam dependent version of VICE is available in the Source SDK.

There is a version of vice that runs independant from steam available here: Using Vice without Steam

You can download the vice standalone application with wildcard support from here.

Troubleshooting

Most users who try Steam will get a problematic SteamAppId error. This is due to Steam filesystem update inconsistancy. It stripped one word from the gameinfo.txt and didn't notify anyone. In order to use these Steam applications you must go to the root folder of your mod or the game you want to modify, and change ToolsAppID to AppID. This will allow you to use both versions of vice and a few more programs like mdldecompiler. You must also make sure that your mod or game is selected in vconfig. If you edit your mod's gameinfo file and have Half-Life 2 selected in vconfig you will not be doing much.

If you are decrypting Valve games and not your own mods, then you will have to make this change each time you want to use vice or any other applications that give the same message. For each time you run say, Day of Defeat: Source, it creates a new GameInfo.txt file that still include Tools.

Execution

Execute this in the command prompt to make the .ctx files:

"[Source SDK Bin]\vice.exe" -x .ctx -k [Key: x9Ke0BY7 by default for HL2DM mods] [.txt filename (Use * for wildcard)]

Changing the Key for Your Mod

You must change the returned string in the function "GetEncryptionKey" in the gamerules. The new encryption key must be eight characters long. This encryption key should be used when running VICE.

Decrypting Script Files

If you happen to lose your .txt files and you only have their .ctx files and your mod's encryption key, you can run VICE to decrypt also:
"[Source SDK Bin]\vice.exe" -d -x .txt -k [Key: x9Ke0BY7 by default for HL2DM mods] [.ctx filename (Use * for wildcard)]

See Also