Rev.ini Editor GUI

Discussion in 'Coding / Projects' started by plinx, Feb 22, 2012.

  1. plinx New Member

    I just have coded a rev.ini Editor for those guys who want to edit rev.ini more comfortable.
    It's coded in VisualBasic. NetFramework 4.0 is required.

    The rev.ini has to be created with RevEditor using "Create new rev.ini".
    If you don't do this, the rev.ini will work, but you have to type in your information everytime again.

    This File has to be in your Game folder, where the rev.ini is. If u're using Windows Vista or 7, you have to run this program as Administrator, if your Game Folder is in a System Folder like Program Files or else.

    Download

    Greetz, plinx

    EDIT: Fixed some Errors.
  2. ChrisTX Administrator

    I read a little around in your executable, and noticed the way you read in the line numbers. You shouldn't rely on line X containing a value because the example file does so, neither should you assume that a value is present or has not been commented out.

    Instead of parsing the file manually, it'd be better if you used the Get/WritePrivateProfileString() APIs. To see an example how to so so, click here.
  3. pr0ton New Member

    I'm looking for a little program (or batch) just to change PlayerName and SteamUser, to make things easier on LAN's. Preferably like ChrisTX mentioned but static X line is fine too, thanks. And already good work plinx!
  4. pr0ton New Member

    Someone uploaded something, but now post is gone :(. The tool worked, but I could only see weird characters.
  5. razor8 New Member

  6. pr0ton New Member

    Nice program, more features than looking for, but doesn't change SteamUser. Mainly because it is outdated I think.
    Good, what I'm looking for, also no SteamUser on first sight :(, but links are gone.
    Only language switcher.
    Works, but complicated. No simple 'enter your name' screen.

    Edit: Now I see you are the creator of the Rev.ini Namechanger and Revinimanipulator :). Not interested in updating the Rev.ini Namechanger or otherwise providing source as you mentioned in the thread :rolleyes: .
  7. razor8 New Member

    testncrash likes this.
  8. pr0ton New Member

    Thank you very much!
  9. U#0 New Member

    CMD script which works with UTF-8.
    [SteamClient] section must be at the end of rev.ini file.
    Code:
    @ECHO OFF
    CHCP 65001
    SET NAME=%1
    TYPE rev.ini | FINDSTR /V "PlayerName">rev.tmp
    DEL rev.ini
    RENAME rev.tmp rev.ini
    ECHO PlayerName=%NAME%>>rev.ini
    Just save as name.cmd and execute: name Nick.
    testncrash likes this.