I installed the plug-in but am having a new problem. I got it to display the text and it does go fast at first, but it slows to a crawl after a second or two of movement.
sync on
set display mode 800,600,32
D3D_INIT 1
set text size 30
set text font "Tahoma"
set dir "C:\users\shelby jueden\desktop\frontend\games\"
d3d_color 255,255,255,255
Perform checklist for files
dim GameName$(checklist quantity()-2)
dim GameExeL$(checklist quantity()-2)
dim GameExeN$(checklist quantity()-2)
dim GameSavN$(checklist quantity()-2)
dim GameSavL$(checklist quantity()-2)
dim Gametxts$(checklist quantity()-2)
dim readtemp$(10)
for tx=3 to (checklist quantity())
next tx
for b = 3 to checklist quantity()
load array checklist string$(b),readtemp$(10)
GameName$(b-2)=readtemp$(0)
GameExeL$(b-2)=readtemp$(1)
GameSavN$(b-2)=readtemp$(2)
GameSavL$(b-2)=readtemp$(3)
GameExeN$(b-2)=readtemp$(4)
next b
scroll=0
gosub rescroll
do
temp=scroll
if upkey()=1 then scroll=scroll-1
if downkey()=1 then scroll=scroll+1
if temp<>scroll then gosub rescroll
if mouseclick()=1 then exit
sync
loop
input "Which game? ",game
cls
set text size 30
print GameName$(game)
set text size 20
print checklist string$(game+2)
print GameExeN$(game)
print GameExeL$(game)
print GameSavN$(game)
print GameSavL$(game)
sync
wait key
end
rescroll:
cls
D3D_STARTTEXT
D3D_FONT 1,"Tahoma",30,0,0,0
for ss=1 to checklist quantity()-2
d3d_text 1,200,(ss-2)*100+scroll,0,str$(ss)+" - "+GameName$(ss)
next ss
D3D_FONT 1,"Tahoma",18,0,0,0
for ss=1 to checklist quantity()-2
d3d_text 1,220,(ss-2)*100+scroll+24,0,GameExeN$(ss)+"-"+GameExeL$(ss)
next ss
D3D_ENDTEXT
return