WinEX

Post Reply
BASICwebmaster
Posts: 3
Joined: Tue Aug 09, 2005 4:23 am

WinEX

Post by BASICwebmaster »

This is the new copy of WinEX. Much more stable, etc. Modify Settings.txt before using Document Storage, Web Browser, or E-Mail client . Password is jbrocks, Username will be displayed as "WinEX User". Feel Free to modify the source code so you have your own name at the top.

New: I missed a file, it's now here.

I accidently forgot to include a couple files, so copy & paste this into JB, svae it to the directory that WinEX is in, and run it.

Code: Select all

input "Have you saved this program to the WinEX Directory?"; save$
if left$(save$, 1)  <> "y" then end
cls
print "Welcome to WinEX Patcher"
print
print "Starting File 1..."
open "Programs.dat" for random as #patch len = 95
field #patch, 65 as Path$, 30 as ProgName$
for x = 1 to 80
put #patch, x
print "File 1: " + str$(int((x/4) * 5)) + "% Complete"
next x
close #patch

print
print "File 1 Complete. Starting File 2..."
print

open "Defaults.dat" for random as #patch len = 85
field #patch, 85 as Path$
for x = 1 to 6
put #patch, x
print "File 1: " + str$(int(((x * 5) / 3) * 10)) + "% Complete"
next x
close #patch

print
print "File 2 Complete."
print
print "Patch Complete. WinEX is now operational."
end
Attachments
WinEX.zip
WinEX
(1.34 MiB) Downloaded 515 times
Post Reply