I need help modifying my current script.
I need help modifying my current script. I am currently trying to set-up a VBS program that asked for Full Name,
Gamertag, and Team name. After the user inputs his information, It should respond with a message stating “Your room number is (based by user input)….HAPPY GAMING!!. After complete, I want to be able to access those different folders labled as the teams with the players information inside. Furthermore, it must contain the following requirements:
- VBScript Introduction: Variables, Constants, and Data Types
- VBScript Output Methods, VBScript Input Methods
- VBScript Decision-Making Statements
- VBScript Loop Structures and Arrays
- VBScript Procedures and Functions
- VBScript File Input/Output Methods
This is my first time using this site, and wasn’t sure if the price was sufficient but if a increase of price is required, that’s fine. ATTACHMENT PREVIEW Download attachmentConstForReading =1, ForWriting =2, ForAppending =8, CreateIfNeeded =truesetfso =CreateObject(“Scripting.FileSystemObject”)setfile = fso.OpenTextFile(“output.txt”,ForAppending, ForWriting,CreateIfNeeded)dimfnamefname =inputbox(“Enter the Players Name: “)Team =inputbox(“Enter the Team Name: “)GamerTag =inputbox(“Gamer Tag: “)Room =inputbox(“Room: “)file.write fname &” – “& Team &” – “& GamerTag &” – “& Room &vbcrlffile.close