1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
|
Public Class Knowledge_Input
Public rolldownsize As Integer
Public oldbordersize As Integer
Public oldtitlebarheight As Integer
Public justopened As Boolean = False
Public needtorollback As Boolean = False
Public minimumsizewidth As Integer = 0
Public minimumsizeheight As Integer = 0
Dim guessalreadydone As Boolean
Dim guesscorrect As Boolean
Dim levelup As Boolean
Dim rewardbase As Integer
Dim savecontent() As String
Dim totalguessed As Integer
Dim level As Integer
Dim tillnextlevel As Integer
Dim animalslist(226) As String
Dim fruitslist(75) As String
Dim countrieslist(232) As String
Dim carbrandslist(328) As String
Dim gameconsoleslist(124) As String
Dim elementslist(117) As String
Private Sub Knowledge_Input_Load(sender As Object, e As EventArgs) Handles MyBase.Load
justopened = True
setuptitlebar()
setupborders()
ShiftOSDesktop.setcolours()
pnlcategorydisplay.Hide()
Me.Left = (Screen.PrimaryScreen.Bounds.Width - Me.Width) / 2
Me.Top = (Screen.PrimaryScreen.Bounds.Height - Me.Height) / 2
setskin()
ShiftOSDesktop.pnlpanelbuttonknowledgeinput.SendToBack()
ShiftOSDesktop.setuppanelbuttons()
ShiftOSDesktop.setpanelbuttonappearnce(ShiftOSDesktop.pnlpanelbuttonknowledgeinput, ShiftOSDesktop.tbknowledgeinputicon, ShiftOSDesktop.tbknowledgeinputtext, True)
ShiftOSDesktop.programsopen = ShiftOSDesktop.programsopen + 1
level = 1
tillnextlevel = 10
makeanimallist()
makefruitlist()
makecountrieslist()
makecarbrandslist()
makegameconsoleslist()
makeelementslist()
If ShiftOSDesktop.boughtkicarbrands = True Then
If ListBox1.Items.Contains("Car Brands") Then
Else
ListBox1.Items.Add("Car Brands")
End If
End If
If ShiftOSDesktop.boughtkigameconsoles = True Then
If ListBox1.Items.Contains("Game Consoles") Then
Else
ListBox1.Items.Add("Game Consoles")
End If
End If
If ShiftOSDesktop.boughtkielements = True Then
If ListBox1.Items.Contains("Elements") Then
Else
ListBox1.Items.Add("Elements")
End If
End If
End Sub
Private Sub ShiftOSDesktop_keydown(sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
'Make terminal appear
If e.KeyCode = Keys.T AndAlso e.Control Then
Terminal.Show()
Terminal.Visible = True
Terminal.BringToFront()
End If
'Movable Windows
If ShiftOSDesktop.boughtmovablewindows = True Then
If e.KeyCode = Keys.A AndAlso e.Control Then
e.Handled = True
Me.Location = New Point(Me.Location.X - ShiftOSDesktop.movablewindownumber, Me.Location.Y)
e.SuppressKeyPress = True
End If
If e.KeyCode = Keys.D AndAlso e.Control Then
e.Handled = True
Me.Location = New Point(Me.Location.X + ShiftOSDesktop.movablewindownumber, Me.Location.Y)
e.SuppressKeyPress = True
End If
If e.KeyCode = Keys.W AndAlso e.Control Then
e.Handled = True
Me.Location = New Point(Me.Location.X, Me.Location.Y - ShiftOSDesktop.movablewindownumber)
e.SuppressKeyPress = True
End If
If e.KeyCode = Keys.S AndAlso e.Control Then
e.Handled = True
Me.Location = New Point(Me.Location.X, Me.Location.Y + ShiftOSDesktop.movablewindownumber)
e.SuppressKeyPress = True
End If
End If
End Sub
Private Sub titlebar_MouseDown(sender As Object, e As MouseEventArgs) Handles titlebar.MouseDown, lbtitletext.MouseDown, pnlicon.MouseDown, pgtoplcorner.MouseDown, pgtoprcorner.MouseDown
' Handle Draggable Windows
If ShiftOSDesktop.boughtdraggablewindows = True Then
If e.Button = MouseButtons.Left Then
titlebar.Capture = False
lbtitletext.Capture = False
pnlicon.Capture = False
pgtoplcorner.Capture = False
pgtoprcorner.Capture = False
Const WM_NCLBUTTONDOWN As Integer = &HA1S
Const HTCAPTION As Integer = 2
Dim msg As Message = _
Message.Create(Me.Handle, WM_NCLBUTTONDOWN, _
New IntPtr(HTCAPTION), IntPtr.Zero)
Me.DefWndProc(msg)
End If
ShiftOSDesktop.log = ShiftOSDesktop.log & My.Computer.Clock.LocalTime & " User dragged " & Me.Name & " to " & Me.Location.ToString & Environment.NewLine
End If
End Sub
Public Sub setupborders()
If ShiftOSDesktop.boughtwindowborders = False Then
pgleft.Hide()
pgbottom.Hide()
pgright.Hide()
Me.Size = New Size(Me.Width - pgleft.Width - pgright.Width, Me.Height - pgbottom.Height)
End If
End Sub
Private Sub closebutton_Click(sender As Object, e As EventArgs) Handles closebutton.Click
Me.Close()
End Sub
Private Sub closebutton_MouseEnter(sender As Object, e As EventArgs) Handles closebutton.MouseEnter, closebutton.MouseUp
closebutton.BackgroundImage = ShiftOSDesktop.skinclosebutton(1)
End Sub
Private Sub closebutton_MouseLeave(sender As Object, e As EventArgs) Handles closebutton.MouseLeave
closebutton.BackgroundImage = ShiftOSDesktop.skinclosebutton(0)
End Sub
Private Sub closebutton_MouseDown(sender As Object, e As EventArgs) Handles closebutton.MouseDown
closebutton.BackgroundImage = ShiftOSDesktop.skinclosebutton(2)
End Sub
Private Sub minimizebutton_Click(sender As Object, e As EventArgs) Handles minimizebutton.Click
ShiftOSDesktop.minimizeprogram(Me)
End Sub
Private Sub titlebar_MouseEnter(sender As Object, e As EventArgs) Handles titlebar.MouseEnter, titlebar.MouseUp, lbtitletext.MouseEnter, pnlicon.MouseEnter, closebutton.MouseEnter, rollupbutton.MouseEnter
If ShiftOSDesktop.skinimages(3) = ShiftOSDesktop.skinimages(4) Then Else titlebar.BackgroundImage = ShiftOSDesktop.skintitlebar(1)
End Sub
Private Sub titlebar_MouseLeave(sender As Object, e As EventArgs) Handles titlebar.MouseLeave, lbtitletext.MouseLeave, pnlicon.MouseLeave, closebutton.MouseLeave, rollupbutton.MouseLeave
If ShiftOSDesktop.skinimages(3) = ShiftOSDesktop.skinimages(4) Then Else titlebar.BackgroundImage = ShiftOSDesktop.skintitlebar(0)
End Sub
Private Sub rollupbutton_Click(sender As Object, e As EventArgs) Handles rollupbutton.Click
rollupanddown()
End Sub
Private Sub rollupbutton_MouseEnter(sender As Object, e As EventArgs) Handles rollupbutton.MouseEnter, rollupbutton.MouseUp
rollupbutton.BackgroundImage = ShiftOSDesktop.skinrollupbutton(1)
End Sub
Private Sub rollupbutton_MouseLeave(sender As Object, e As EventArgs) Handles rollupbutton.MouseLeave
rollupbutton.BackgroundImage = ShiftOSDesktop.skinrollupbutton(0)
End Sub
Private Sub rollupbutton_MouseDown(sender As Object, e As EventArgs) Handles rollupbutton.MouseDown
rollupbutton.BackgroundImage = ShiftOSDesktop.skinrollupbutton(2)
End Sub
Public Sub setuptitlebar()
If Me.Height = Me.titlebar.Height Then pgleft.Show() : pgbottom.Show() : pgright.Show() : Me.Height = rolldownsize : needtorollback = True
pgleft.Width = ShiftOSDesktop.windowbordersize
pgright.Width = ShiftOSDesktop.windowbordersize
pgbottom.Height = ShiftOSDesktop.windowbordersize
titlebar.Height = ShiftOSDesktop.titlebarheight
If justopened = True Then
Me.Size = New Size(673, 304) 'put the default size of your window here
Me.Size = New Size(Me.Width, Me.Height + ShiftOSDesktop.titlebarheight - 30)
Me.Size = New Size(Me.Width + ShiftOSDesktop.windowbordersize + ShiftOSDesktop.windowbordersize, Me.Height + ShiftOSDesktop.windowbordersize)
oldbordersize = ShiftOSDesktop.windowbordersize
oldtitlebarheight = ShiftOSDesktop.titlebarheight
justopened = False
Else
If Me.Visible = True Then
Me.Hide()
Me.Size = New Size(Me.Width, Me.Height - oldtitlebarheight + 30)
Me.Size = New Size(Me.Width - oldbordersize - oldbordersize, Me.Height - oldbordersize)
oldbordersize = ShiftOSDesktop.windowbordersize
oldtitlebarheight = ShiftOSDesktop.titlebarheight
Me.Size = New Size(Me.Width, Me.Height + ShiftOSDesktop.titlebarheight - 30)
Me.Size = New Size(Me.Width + ShiftOSDesktop.windowbordersize + ShiftOSDesktop.windowbordersize, Me.Height + ShiftOSDesktop.windowbordersize)
rolldownsize = Me.Height
If needtorollback = True Then Me.Height = titlebar.Height : pgleft.Hide() : pgbottom.Hide() : pgright.Hide()
Me.Show()
End If
End If
If ShiftOSDesktop.showwindowcorners = True Then
pgtoplcorner.Show()
pgtoprcorner.Show()
pgtoprcorner.Width = ShiftOSDesktop.titlebarcornerwidth
pgtoplcorner.Width = ShiftOSDesktop.titlebarcornerwidth
Else
pgtoplcorner.Hide()
pgtoprcorner.Hide()
End If
If ShiftOSDesktop.boughttitlebar = False Then
titlebar.Hide()
Me.Size = New Size(Me.Width, Me.Size.Height - titlebar.Height)
End If
If ShiftOSDesktop.boughttitletext = False Then
lbtitletext.Hide()
Else
lbtitletext.Font = New Font(ShiftOSDesktop.titletextfont, ShiftOSDesktop.titletextsize, ShiftOSDesktop.titletextstyle)
lbtitletext.Text = ShiftOSDesktop.knowledgeinputname
lbtitletext.Show()
End If
If ShiftOSDesktop.boughtclosebutton = False Then
closebutton.Hide()
Else
closebutton.BackColor = ShiftOSDesktop.closebuttoncolour
closebutton.Height = ShiftOSDesktop.closebuttonheight
closebutton.Width = ShiftOSDesktop.closebuttonwidth
closebutton.Show()
End If
If ShiftOSDesktop.boughtrollupbutton = False Then
rollupbutton.Hide()
Else
rollupbutton.BackColor = ShiftOSDesktop.rollupbuttoncolour
rollupbutton.Height = ShiftOSDesktop.rollupbuttonheight
rollupbutton.Width = ShiftOSDesktop.rollupbuttonwidth
rollupbutton.Show()
End If
If ShiftOSDesktop.boughtminimizebutton = False Then
minimizebutton.Hide()
Else
minimizebutton.BackColor = ShiftOSDesktop.minimizebuttoncolour
minimizebutton.Height = ShiftOSDesktop.minimizebuttonheight
minimizebutton.Width = ShiftOSDesktop.minimizebuttonwidth
minimizebutton.Show()
End If
If ShiftOSDesktop.boughtwindowborders = True Then
closebutton.Location = New Point(titlebar.Size.Width - ShiftOSDesktop.closebuttonside - closebutton.Size.Width, ShiftOSDesktop.closebuttontop)
rollupbutton.Location = New Point(titlebar.Size.Width - ShiftOSDesktop.rollupbuttonside - rollupbutton.Size.Width, ShiftOSDesktop.rollupbuttontop)
minimizebutton.Location = New Point(titlebar.Size.Width - ShiftOSDesktop.minimizebuttonside - minimizebutton.Size.Width, ShiftOSDesktop.minimizebuttontop)
Select Case ShiftOSDesktop.titletextposition
Case "Left"
lbtitletext.Location = New Point(ShiftOSDesktop.titletextside, ShiftOSDesktop.titletexttop)
Case "Centre"
lbtitletext.Location = New Point((titlebar.Width / 2) - lbtitletext.Width / 2, ShiftOSDesktop.titletexttop)
End Select
lbtitletext.ForeColor = ShiftOSDesktop.titletextcolour
Else
closebutton.Location = New Point(titlebar.Size.Width - ShiftOSDesktop.closebuttonside - pgtoplcorner.Width - pgtoprcorner.Width - closebutton.Size.Width, ShiftOSDesktop.closebuttontop)
rollupbutton.Location = New Point(titlebar.Size.Width - ShiftOSDesktop.rollupbuttonside - pgtoplcorner.Width - pgtoprcorner.Width - rollupbutton.Size.Width, ShiftOSDesktop.rollupbuttontop)
minimizebutton.Location = New Point(titlebar.Size.Width - ShiftOSDesktop.minimizebuttonside - pgtoplcorner.Width - pgtoprcorner.Width - minimizebutton.Size.Width, ShiftOSDesktop.minimizebuttontop)
Select Case ShiftOSDesktop.titletextposition
Case "Left"
lbtitletext.Location = New Point(ShiftOSDesktop.titletextside + pgtoplcorner.Width, ShiftOSDesktop.titletexttop)
Case "Centre"
lbtitletext.Location = New Point((titlebar.Width / 2) - lbtitletext.Width / 2, ShiftOSDesktop.titletexttop)
End Select
lbtitletext.ForeColor = ShiftOSDesktop.titletextcolour
End If
If ShiftOSDesktop.boughtknowledgeinputicon = True Then
pnlicon.Visible = True
pnlicon.Location = New Point(ShiftOSDesktop.titlebariconside, ShiftOSDesktop.titlebaricontop)
pnlicon.Size = New Size(ShiftOSDesktop.titlebariconsize, ShiftOSDesktop.titlebariconsize)
pnlicon.Image = ShiftOSDesktop.knowledgeinputicontitlebar 'Replace with the correct icon for the program.
End If
End Sub
Public Sub rollupanddown()
If Me.Height = Me.titlebar.Height Then
pgleft.Show()
pgbottom.Show()
pgright.Show()
Me.Height = rolldownsize
Me.MinimumSize = New Size(minimumsizewidth, minimumsizeheight)
Else
Me.MinimumSize = New Size(0, 0)
pgleft.Hide()
pgbottom.Hide()
pgright.Hide()
rolldownsize = Me.Height
Me.Height = Me.titlebar.Height
End If
End Sub
Public Sub setskin()
If ShiftOSDesktop.skinclosebutton(0) Is Nothing Then Else closebutton.BackgroundImage = ShiftOSDesktop.skinclosebutton(0).Clone
closebutton.BackgroundImageLayout = ShiftOSDesktop.skinclosebuttonstyle
If ShiftOSDesktop.skintitlebar(0) Is Nothing Then Else titlebar.BackgroundImage = ShiftOSDesktop.skintitlebar(0).Clone
titlebar.BackgroundImageLayout = ShiftOSDesktop.skintitlebarstyle
If ShiftOSDesktop.skinrollupbutton(0) Is Nothing Then Else rollupbutton.BackgroundImage = ShiftOSDesktop.skinrollupbutton(0).Clone
rollupbutton.BackgroundImageLayout = ShiftOSDesktop.skinrollupbuttonstyle
If ShiftOSDesktop.skintitlebarleftcorner(0) Is Nothing Then Else pgtoplcorner.BackgroundImage = ShiftOSDesktop.skintitlebarleftcorner(0).Clone
pgtoplcorner.BackgroundImageLayout = ShiftOSDesktop.skintitlebarleftcornerstyle
If ShiftOSDesktop.skintitlebarrightcorner(0) Is Nothing Then Else pgtoprcorner.BackgroundImage = ShiftOSDesktop.skintitlebarrightcorner(0).Clone
pgtoprcorner.BackgroundImageLayout = ShiftOSDesktop.skintitlebarrightcornerstyle
If ShiftOSDesktop.skinminimizebutton(0) Is Nothing Then Else minimizebutton.BackgroundImage = ShiftOSDesktop.skinminimizebutton(0).Clone
minimizebutton.BackgroundImageLayout = ShiftOSDesktop.skinminimizebuttonstyle
'remove background colour when image is present
If closebutton.BackgroundImage Is Nothing Then Else closebutton.BackColor = Color.Transparent
If titlebar.BackgroundImage Is Nothing Then Else titlebar.BackColor = Color.Transparent
If rollupbutton.BackgroundImage Is Nothing Then Else rollupbutton.BackColor = Color.Transparent
If pgtoplcorner.BackgroundImage Is Nothing Then Else pgtoplcorner.BackColor = Color.Transparent
If pgtoprcorner.BackgroundImage Is Nothing Then Else pgtoprcorner.BackColor = Color.Transparent
If minimizebutton.BackgroundImage Is Nothing Then Else minimizebutton.BackColor = Color.Transparent
Me.TransparencyKey = ShiftOSDesktop.globaltransparencycolour
End Sub
Private Sub Clock_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
ShiftOSDesktop.programsopen = ShiftOSDesktop.programsopen - 1
Me.Hide()
ShiftOSDesktop.setuppanelbuttons()
End Sub
'end of general setup
Private Sub ListBox1_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles ListBox1.DrawItem
e.DrawBackground()
If (e.State And DrawItemState.Selected) = DrawItemState.Selected Then
e.Graphics.FillRectangle(Brushes.Black, e.Bounds)
End If
Dim sf As New StringFormat
sf.Alignment = StringAlignment.Center
Using b As New SolidBrush(e.ForeColor)
e.Graphics.DrawString(ListBox1.GetItemText(ListBox1.Items(e.Index)), e.Font, b, e.Bounds, sf)
End Using
e.DrawFocusRectangle()
End Sub
Private Sub listblistedstuff_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles listblistedstuff.DrawItem
e.DrawBackground()
If (e.State And DrawItemState.Selected) = DrawItemState.Selected Then
e.Graphics.FillRectangle(Brushes.Black, e.Bounds)
End If
Using b As New SolidBrush(e.ForeColor)
e.Graphics.DrawString(listblistedstuff.GetItemText(listblistedstuff.Items(e.Index)), e.Font, b, e.Bounds)
End Using
e.DrawFocusRectangle()
End Sub
Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListBox1.SelectedIndexChanged
On Error Resume Next
'Remember to create the files for each category in the hijack screen and add the category in the design view and make the countries list in this load event
Select Case ListBox1.SelectedItem.ToString
Case "Animals"
loadsavepoint("Animals", 10, "C:\ShiftOS\SoftwareData\KnowledgeInput\Animals.lst", "There are many animals out there! Can you list them all?" & Environment.NewLine _
& "Note that you get points for listing animals... not animal breeds!", animalslist)
Case "Fruits"
loadsavepoint("Fruits", 10, "C:\ShiftOS\SoftwareData\KnowledgeInput\Fruits.lst", "Do you get your daily serving of fruit each day?" & Environment.NewLine _
& "Really...? See if you can list them then ;)", fruitslist)
Case "Countries"
loadsavepoint("Countries", 10, "C:\ShiftOS\SoftwareData\KnowledgeInput\Countries.lst", "Ever wanted to travel the entire world?" & Environment.NewLine _
& "Well before you do see if you can list every country in the world!", countrieslist)
Case "Car Brands"
loadsavepoint("Car Brands", 10, "C:\ShiftOS\SoftwareData\KnowledgeInput\Car Brands.lst", "Can you list every single car brand?" & Environment.NewLine _
& "Don't use words like automobiles, motors or cars!", carbrandslist)
Case "Game Consoles"
loadsavepoint("Game Consoles", 10, "C:\ShiftOS\SoftwareData\KnowledgeInput\Game Consoles.lst", "Do you call yourself a gamer?" & Environment.NewLine _
& "Earn that title by listing non-handheld game consoles!", gameconsoleslist)
Case "Elements"
loadsavepoint("Elements", 10, "C:\ShiftOS\SoftwareData\KnowledgeInput\Elements.lst", "Have you memorized the periodic table of elements?" & Environment.NewLine _
& "No? Well don't even attempt trying to guess them all here!", elementslist)
End Select
End Sub
Private Sub handleword()
Select Case ListBox1.SelectedItem.ToString
Case "Animals"
handlewordtype(animalslist, "C:\ShiftOS\SoftwareData\KnowledgeInput\Animals.lst")
Case "Fruits"
handlewordtype(fruitslist, "C:\ShiftOS\SoftwareData\KnowledgeInput\Fruits.lst")
Case "Countries"
handlewordtype(countrieslist, "C:\ShiftOS\SoftwareData\KnowledgeInput\Countries.lst")
Case "Car Brands"
handlewordtype(carbrandslist, "C:\ShiftOS\SoftwareData\KnowledgeInput\Car Brands.lst")
Case "Game Consoles"
handlewordtype(gameconsoleslist, "C:\ShiftOS\SoftwareData\KnowledgeInput\Game Consoles.lst")
Case "Elements"
handlewordtype(elementslist, "C:\ShiftOS\SoftwareData\KnowledgeInput\Elements.lst")
End Select
guessbox.Text = ""
listblistedstuff.TopIndex = listblistedstuff.Items.Count - 1
End Sub
Private Sub btnquit_Click(sender As Object, e As EventArgs)
Me.Close()
End Sub
Private Sub btnstart_Click(sender As Object, e As EventArgs) Handles btnstart.Click
handleword()
End Sub
Private Sub guessbox_click(sender As Object, e As EventArgs) Handles guessbox.MouseClick
guessbox.Text = ""
End Sub
Private Sub guessbox_keydown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles guessbox.KeyDown
If e.KeyCode = Keys.Enter Then
e.SuppressKeyPress = True
handleword()
End If
End Sub
Private Sub decider_Tick(sender As Object, e As EventArgs) Handles decider.Tick
lblcurrentlevel.Text = "Current Level: " & level
lblnextreward.Text = "Reward for completing level " & level & " : " & rewardbase * level & "CP"
guessalreadydone = False
guesscorrect = False
levelup = False
decider.Interval = 500
decider.Stop()
End Sub
Private Sub loadsavepoint(ByVal title As String, ByVal reward As Integer, ByVal loadpath As String, ByVal info As String, ByVal listtype() As String)
lblcategory.Text = title
rewardbase = reward
listblistedstuff.Items.Clear()
listblistedstuff.Items.AddRange(IO.File.ReadAllLines(loadpath))
totalguessed = listblistedstuff.Items.Count
level = Math.Ceiling((totalguessed / 10))
tillnextlevel = Math.Abs(totalguessed - (level * 10))
If tillnextlevel = 0 Then
level = level + 1
tillnextlevel = 10
End If
lblcatedescription.Text = info
pnlcategorydisplay.Show()
lbltillnextlevel.Text = "Words Until Next Level: " & tillnextlevel
lblcurrentlevel.Text = "Current Level: " & level
lbltotal.Text = "Guessed: " & totalguessed & "/" & listtype.Length
lblnextreward.Text = "Reward for completing level " & level & " : " & rewardbase * level & "CP"
End Sub
Private Sub handlewordtype(ByVal listtype() As String, ByVal savepath As String)
Dim userguess As String = guessbox.Text
userguess = userguess.ToLower
For Each Str As String In listtype
If Str = userguess Then
If listblistedstuff.Items.Contains(userguess) Then
guessalreadydone = True
ShiftOSDesktop.log = ShiftOSDesktop.log & My.Computer.Clock.LocalTime & " Knowledge Input Already Did " & ListBox1.SelectedItem.ToString & ": " & userguess & Environment.NewLine
Else
guesscorrect = True
listblistedstuff.Items.Add(userguess)
ShiftOSDesktop.log = ShiftOSDesktop.log & My.Computer.Clock.LocalTime & " Knowledge Input Guessed " & ListBox1.SelectedItem.ToString & ": " & userguess & Environment.NewLine
tillnextlevel = tillnextlevel - 1
totalguessed = totalguessed + 1
IO.File.WriteAllLines(savepath, listblistedstuff.Items.Cast(Of String).ToArray)
If tillnextlevel = 0 Then
levelup = True
tillnextlevel = 10
ShiftOSDesktop.codepoints = ShiftOSDesktop.codepoints + rewardbase * level
Dim objWriter As New System.IO.StreamWriter("C:/ShiftOS/Shiftum42/SKernal.sft", False)
objWriter.Write(ShiftOSDesktop.codepoints)
objWriter.Close()
level = level + 1
ShiftOSDesktop.log = ShiftOSDesktop.log & My.Computer.Clock.LocalTime & " Reached " & ListBox1.SelectedItem.ToString & " Level: " & level & Environment.NewLine
End If
End If
End If
Next
lbltillnextlevel.Text = "Words Until Next Level: " & tillnextlevel
lblcurrentlevel.Text = "Current Level: " & level
lbltotal.Text = "Guessed: " & totalguessed & "/" & listtype.Length
lblnextreward.Text = "Reward for completing level " & level & " : " & rewardbase * level & "CP"
If levelup = True Then
decider.Interval = 2000
lblcurrentlevel.Text = "Level Up!"
lblnextreward.Text = "You have earned " & rewardbase * (level - 1) & " Code Points!"
ShiftOSDesktop.log = ShiftOSDesktop.log & My.Computer.Clock.LocalTime & " User has " & ShiftOSDesktop.codepoints & " Code Points!" & Environment.NewLine
decider.Start()
Else
If guessalreadydone = True Then
lblcurrentlevel.Text = "Already Guessed"
decider.Start()
Else
If guesscorrect = True Then
lblcurrentlevel.Text = "Correct :)"
decider.Start()
Else
lblcurrentlevel.Text = "Wrong :("
ShiftOSDesktop.log = ShiftOSDesktop.log & My.Computer.Clock.LocalTime & " Knowledge Input Wrong " & ListBox1.SelectedItem.ToString & ": " & userguess & Environment.NewLine
decider.Start()
End If
End If
End If
End Sub
Private Sub makeanimallist()
animalslist(0) = "aardvark"
animalslist(1) = "albatross"
animalslist(2) = "alligator"
animalslist(3) = "alpaca"
animalslist(4) = "ant"
animalslist(5) = "anteater"
animalslist(6) = "antelope"
animalslist(7) = "ape"
animalslist(8) = "armadillo"
animalslist(9) = "ass"
animalslist(10) = "baboon"
animalslist(11) = "badger"
animalslist(12) = "barracuda"
animalslist(13) = "bat"
animalslist(14) = "bear"
animalslist(15) = "beaver"
animalslist(16) = "bee"
animalslist(17) = "bison"
animalslist(18) = "boar"
animalslist(19) = "buffalo"
animalslist(20) = "butterfly"
animalslist(21) = "camel"
animalslist(22) = "caribou"
animalslist(23) = "cat"
animalslist(24) = "caterpillar"
animalslist(25) = "cow"
animalslist(26) = "chamois"
animalslist(27) = "cheetah"
animalslist(28) = "chicken"
animalslist(29) = "chimpanzee"
animalslist(30) = "chinchilla"
animalslist(31) = "chough"
animalslist(32) = "clam"
animalslist(33) = "cobra"
animalslist(34) = "cockroach"
animalslist(35) = "cod"
animalslist(36) = "cormorant"
animalslist(37) = "coyote"
animalslist(38) = "crab"
animalslist(39) = "crane"
animalslist(40) = "crocodile"
animalslist(41) = "crow"
animalslist(42) = "curlew"
animalslist(43) = "deer"
animalslist(44) = "dinosaur"
animalslist(45) = "dog"
animalslist(46) = "dogfish"
animalslist(47) = "dolphin"
animalslist(48) = "donkey"
animalslist(49) = "dotterel"
animalslist(50) = "dove"
animalslist(51) = "dragonfly"
animalslist(52) = "duck"
animalslist(53) = "dugong"
animalslist(54) = "dunlin"
animalslist(55) = "eagle"
animalslist(56) = "echidna"
animalslist(57) = "eel"
animalslist(58) = "eland"
animalslist(59) = "elephant"
animalslist(60) = "elephant seal"
animalslist(61) = "elk"
animalslist(62) = "emu"
animalslist(63) = "falcon"
animalslist(64) = "ferret"
animalslist(65) = "finch"
animalslist(66) = "fish"
animalslist(67) = "flamingo"
animalslist(68) = "fly"
animalslist(69) = "fox"
animalslist(70) = "frog"
animalslist(71) = "galago"
animalslist(72) = "gaur"
animalslist(73) = "gazelle"
animalslist(74) = "gerbil"
animalslist(75) = "giant panda"
animalslist(76) = "giraffe"
animalslist(77) = "gnat"
animalslist(78) = "gnu"
animalslist(79) = "goat"
animalslist(80) = "goldfinch"
animalslist(81) = "goldfish"
animalslist(82) = "goose"
animalslist(83) = "gorilla"
animalslist(84) = "goshawk"
animalslist(85) = "grasshopper"
animalslist(86) = "grouse"
animalslist(87) = "guanaco"
animalslist(88) = "guineafowl"
animalslist(89) = "guinea pig"
animalslist(90) = "gull"
animalslist(91) = "hamster"
animalslist(92) = "hare"
animalslist(93) = "hawk"
animalslist(94) = "hedgehog"
animalslist(95) = "heron"
animalslist(96) = "herring"
animalslist(97) = "hippopotamus"
animalslist(98) = "hornet"
animalslist(99) = "horse"
animalslist(100) = "human"
animalslist(101) = "humming bird"
animalslist(102) = "hyena"
animalslist(103) = "jackal"
animalslist(104) = "jaguar"
animalslist(105) = "jay"
animalslist(106) = "jellyfish"
animalslist(107) = "kangaroo"
animalslist(108) = "koala"
animalslist(109) = "komodo dragon"
animalslist(110) = "kouprey"
animalslist(111) = "kudu"
animalslist(112) = "lizard"
animalslist(113) = "lark"
animalslist(114) = "lemur"
animalslist(115) = "leopard"
animalslist(116) = "lion"
animalslist(117) = "llama"
animalslist(118) = "lobster"
animalslist(119) = "locust"
animalslist(120) = "loris"
animalslist(121) = "louse"
animalslist(122) = "lyrebird"
animalslist(123) = "magpie"
animalslist(124) = "mallard"
animalslist(125) = "manatee"
animalslist(126) = "marten"
animalslist(127) = "meerkat"
animalslist(128) = "mink"
animalslist(129) = "mole"
animalslist(130) = "monkey"
animalslist(131) = "moose"
animalslist(132) = "mosquito"
animalslist(133) = "mouse"
animalslist(134) = "mule"
animalslist(135) = "narwhal"
animalslist(136) = "newt"
animalslist(137) = "nightingale"
animalslist(138) = "octopus"
animalslist(139) = "okapi"
animalslist(140) = "opossum"
animalslist(141) = "oryx"
animalslist(142) = "ostrich"
animalslist(143) = "otter"
animalslist(144) = "owl"
animalslist(145) = "ox"
animalslist(146) = "oyster"
animalslist(147) = "panther"
animalslist(148) = "parrot"
animalslist(149) = "partridge"
animalslist(150) = "peafowl"
animalslist(151) = "pelican"
animalslist(152) = "penguin"
animalslist(153) = "pheasant"
animalslist(154) = "pig"
animalslist(155) = "pigeon"
animalslist(156) = "pony"
animalslist(157) = "porcupine"
animalslist(158) = "porpoise"
animalslist(159) = "prairie dog"
animalslist(160) = "quail"
animalslist(161) = "quelea"
animalslist(162) = "rabbit"
animalslist(163) = "raccoon"
animalslist(164) = "rail"
animalslist(165) = "ram"
animalslist(166) = "rat"
animalslist(167) = "raven"
animalslist(168) = "red deer"
animalslist(169) = "red panda"
animalslist(170) = "reindeer"
animalslist(171) = "rhinoceros"
animalslist(172) = "rook"
animalslist(173) = "ruff"
animalslist(174) = "salamander"
animalslist(175) = "salmon"
animalslist(176) = "sand dollar"
animalslist(177) = "sandpiper"
animalslist(178) = "sardine"
animalslist(179) = "scorpion"
animalslist(180) = "sea lion"
animalslist(181) = "sea urchin"
animalslist(182) = "seahorse"
animalslist(183) = "seal"
animalslist(184) = "shark"
animalslist(185) = "sheep"
animalslist(186) = "shrew"
animalslist(187) = "shrimp"
animalslist(188) = "skunk"
animalslist(189) = "snail"
animalslist(190) = "snake"
animalslist(191) = "spider"
animalslist(192) = "squid"
animalslist(193) = "squirrel"
animalslist(194) = "starling"
animalslist(195) = "stingray"
animalslist(196) = "stink bug"
animalslist(197) = "stork"
animalslist(198) = "swallow"
animalslist(199) = "swan"
animalslist(200) = "tapir"
animalslist(201) = "tarsier"
animalslist(202) = "termite"
animalslist(203) = "tiger"
animalslist(204) = "toad"
animalslist(205) = "trout"
animalslist(206) = "turkey"
animalslist(207) = "turtle"
animalslist(208) = "vicuña"
animalslist(209) = "viper"
animalslist(210) = "vulture"
animalslist(211) = "wallaby"
animalslist(212) = "walrus"
animalslist(213) = "wasp"
animalslist(214) = "water buffalo"
animalslist(215) = "weasel"
animalslist(216) = "whale"
animalslist(217) = "wolf"
animalslist(218) = "wolverine"
animalslist(219) = "wombat"
animalslist(220) = "woodcock"
animalslist(221) = "woodpecker"
animalslist(222) = "worm"
animalslist(223) = "wren"
animalslist(224) = "yak"
animalslist(225) = "zebra"
animalslist(226) = "bird"
End Sub
Private Sub makefruitlist()
fruitslist(0) = "apple"
fruitslist(1) = "apricot"
fruitslist(2) = "avocado"
fruitslist(3) = "banana"
fruitslist(4) = "breadfruit"
fruitslist(5) = "bilberry"
fruitslist(6) = "blackberry"
fruitslist(7) = "blackcurrant"
fruitslist(8) = "blueberry"
fruitslist(9) = "boysenberry"
fruitslist(10) = "cantaloupe"
fruitslist(11) = "currant"
fruitslist(12) = "cherry"
fruitslist(13) = "cherimoya"
fruitslist(14) = "chili"
fruitslist(15) = "cloudberry"
fruitslist(16) = "coconut"
fruitslist(17) = "damson"
fruitslist(18) = "date"
fruitslist(19) = "dragonfruit"
fruitslist(20) = "durian"
fruitslist(21) = "elderberry"
fruitslist(22) = "feijoa"
fruitslist(23) = "fig"
fruitslist(24) = "gooseberry"
fruitslist(25) = "grape"
fruitslist(26) = "grapefruit"
fruitslist(27) = "guava"
fruitslist(28) = "huckleberry"
fruitslist(29) = "honeydew"
fruitslist(30) = "jackfruit"
fruitslist(31) = "jambul"
fruitslist(32) = "jujube"
fruitslist(33) = "kiwi fruit"
fruitslist(34) = "kumquat"
fruitslist(35) = "legume"
fruitslist(36) = "lemon"
fruitslist(37) = "lime"
fruitslist(38) = "loquat"
fruitslist(39) = "lychee"
fruitslist(40) = "mango"
fruitslist(41) = "melon"
fruitslist(42) = "canary melon"
fruitslist(43) = "cantaloupe"
fruitslist(44) = "honeydew"
fruitslist(45) = "watermelon"
fruitslist(46) = "rock melon"
fruitslist(47) = "nectarine"
fruitslist(48) = "nut"
fruitslist(49) = "orange"
fruitslist(50) = "clementine"
fruitslist(51) = "mandarine"
fruitslist(52) = "tangerine"
fruitslist(53) = "papaya"
fruitslist(54) = "passionfruit"
fruitslist(55) = "peach"
fruitslist(56) = "bell pepper"
fruitslist(57) = "pear"
fruitslist(58) = "persimmon"
fruitslist(59) = "physalis"
fruitslist(60) = "plum"
fruitslist(61) = "pineapple"
fruitslist(62) = "pomegranate"
fruitslist(63) = "pomelo"
fruitslist(64) = "purple mangosteen"
fruitslist(65) = "quince"
fruitslist(66) = "raspberry"
fruitslist(67) = "rambutan"
fruitslist(68) = "redcurrant"
fruitslist(69) = "salal berry"
fruitslist(70) = "satsuma"
fruitslist(71) = "star fruit"
fruitslist(72) = "strawberry"
fruitslist(73) = "tamarillo"
fruitslist(74) = "tomato"
fruitslist(75) = "ugli fruit"
End Sub
Private Sub makecountrieslist()
countrieslist(0) = "afghanistan"
countrieslist(1) = "albania"
countrieslist(2) = "algeria"
countrieslist(3) = "american samoa"
countrieslist(4) = "andorra"
countrieslist(5) = "angola"
countrieslist(6) = "anguilla"
countrieslist(7) = "antigua"
countrieslist(8) = "argentina"
countrieslist(9) = "armenia"
countrieslist(10) = "aruba"
countrieslist(11) = "australia"
countrieslist(12) = "austria"
countrieslist(13) = "azerbaijan"
countrieslist(14) = "bahamas"
countrieslist(15) = "bahrain"
countrieslist(16) = "bangladesh"
countrieslist(17) = "barbados"
countrieslist(18) = "barbuda"
countrieslist(19) = "belarus"
countrieslist(20) = "belgium"
countrieslist(21) = "belize"
countrieslist(22) = "benin"
countrieslist(23) = "bermuda"
countrieslist(24) = "bhutan"
countrieslist(25) = "bolivia"
countrieslist(26) = "bosnia"
countrieslist(27) = "botswana"
countrieslist(28) = "bouvet island"
countrieslist(29) = "brazil"
countrieslist(30) = "brunei"
countrieslist(31) = "bulgaria"
countrieslist(32) = "burkina faso"
countrieslist(33) = "burundi"
countrieslist(34) = "cambodia"
countrieslist(35) = "cameroon"
countrieslist(36) = "canada"
countrieslist(37) = "cape verde"
countrieslist(38) = "cayman islands"
countrieslist(39) = "central african republic"
countrieslist(40) = "chad"
countrieslist(41) = "chile"
countrieslist(42) = "china"
countrieslist(43) = "christmas island"
countrieslist(44) = "cocos islands"
countrieslist(45) = "colombia"
countrieslist(46) = "comoros"
countrieslist(47) = "democratic republic of the congo"
countrieslist(48) = "republic of congo"
countrieslist(49) = "cook islands"
countrieslist(50) = "costa rica"
countrieslist(51) = "croatia"
countrieslist(52) = "cuba"
countrieslist(53) = "cyprus"
countrieslist(54) = "czech republic"
countrieslist(55) = "denmark"
countrieslist(56) = "djibouti"
countrieslist(57) = "dominica"
countrieslist(58) = "dominican republic"
countrieslist(59) = "ecuador"
countrieslist(60) = "egypt"
countrieslist(61) = "el salvador"
countrieslist(62) = "equatorial guinea"
countrieslist(63) = "eritrea"
countrieslist(64) = "estonia"
countrieslist(65) = "ethiopia"
countrieslist(66) = "falkland islands"
countrieslist(67) = "faroe islands"
countrieslist(68) = "fiji"
countrieslist(69) = "finland"
countrieslist(70) = "france"
countrieslist(71) = "french guiana"
countrieslist(72) = "gabon"
countrieslist(73) = "gambia"
countrieslist(74) = "georgia"
countrieslist(75) = "germany"
countrieslist(76) = "ghana"
countrieslist(77) = "gibraltar"
countrieslist(78) = "greece"
countrieslist(79) = "greenland"
countrieslist(80) = "grenada"
countrieslist(81) = "guadeloupe"
countrieslist(82) = "guam"
countrieslist(83) = "guatemala"
countrieslist(84) = "guinea"
countrieslist(85) = "guinea bissau"
countrieslist(86) = "guyana"
countrieslist(87) = "haiti"
countrieslist(88) = "holy see"
countrieslist(89) = "honduras"
countrieslist(90) = "hong kong"
countrieslist(91) = "hungary"
countrieslist(92) = "iceland"
countrieslist(93) = "india"
countrieslist(94) = "indonesia"
countrieslist(95) = "iran"
countrieslist(96) = "iraq"
countrieslist(97) = "ireland"
countrieslist(98) = "israel"
countrieslist(99) = "italy"
countrieslist(100) = "ivory coas"
countrieslist(101) = "jamaica"
countrieslist(102) = "japan"
countrieslist(103) = "jordan"
countrieslist(104) = "kazakhstan"
countrieslist(105) = "kenya"
countrieslist(106) = "kiribati"
countrieslist(107) = "kuwait"
countrieslist(108) = "kyrgyzstan"
countrieslist(109) = "laos"
countrieslist(110) = "latvia"
countrieslist(111) = "lebanon"
countrieslist(112) = "lesotho"
countrieslist(113) = "liberia"
countrieslist(114) = "libya"
countrieslist(115) = "liechtenstein"
countrieslist(116) = "lithuania"
countrieslist(117) = "luxembourg"
countrieslist(118) = "macau"
countrieslist(119) = "macedonia"
countrieslist(120) = "madagascar"
countrieslist(121) = "malawi"
countrieslist(122) = "malaysia"
countrieslist(123) = "maldives"
countrieslist(124) = "mali"
countrieslist(125) = "malta"
countrieslist(126) = "marshall islands"
countrieslist(127) = "martinique"
countrieslist(128) = "mauritania"
countrieslist(129) = "mauritius"
countrieslist(130) = "mayotte"
countrieslist(131) = "mexico"
countrieslist(132) = "micronesia"
countrieslist(133) = "moldova"
countrieslist(134) = "monaco"
countrieslist(135) = "mongolia"
countrieslist(136) = "montenegro"
countrieslist(137) = "montserrat"
countrieslist(138) = "morocco"
countrieslist(139) = "mozambique"
countrieslist(140) = "myanmar"
countrieslist(141) = "namibia"
countrieslist(142) = "nauru"
countrieslist(143) = "nepal"
countrieslist(144) = "netherlands"
countrieslist(145) = "new caledonia"
countrieslist(146) = "new zealand"
countrieslist(147) = "nicaragua"
countrieslist(148) = "niger"
countrieslist(149) = "nigeria"
countrieslist(150) = "niue"
countrieslist(151) = "norfolk island"
countrieslist(152) = "north korea"
countrieslist(153) = "northern mariana islands"
countrieslist(154) = "norway"
countrieslist(155) = "oman"
countrieslist(156) = "pakistan"
countrieslist(157) = "palau"
countrieslist(158) = "panama"
countrieslist(159) = "papua new guinea"
countrieslist(160) = "paraguay"
countrieslist(161) = "peru"
countrieslist(162) = "philippines"
countrieslist(163) = "pitcairn island"
countrieslist(164) = "poland"
countrieslist(165) = "polynesia"
countrieslist(166) = "portugal"
countrieslist(167) = "puerto rico"
countrieslist(168) = "qatar"
countrieslist(169) = "reunion"
countrieslist(170) = "romania"
countrieslist(171) = "russia"
countrieslist(172) = "rwanda"
countrieslist(173) = "saint helena"
countrieslist(174) = "saint kitts and nevis"
countrieslist(175) = "saint lucia"
countrieslist(176) = "saint pierre and miquelon"
countrieslist(177) = "saint vincent and grenadines"
countrieslist(178) = "samoa"
countrieslist(179) = "san marino"
countrieslist(180) = "sao tome and principe"
countrieslist(181) = "saudi arabia"
countrieslist(182) = "senegal"
countrieslist(183) = "serbia"
countrieslist(184) = "seychelles"
countrieslist(185) = "sierra leone"
countrieslist(186) = "singapore"
countrieslist(187) = "slovakia"
countrieslist(188) = "slovenia"
countrieslist(189) = "solomon islands"
countrieslist(190) = "somalia"
countrieslist(191) = "south africa"
countrieslist(192) = "south georgia and south sandwich islands"
countrieslist(193) = "south korea"
countrieslist(194) = "south sudan"
countrieslist(195) = "spain"
countrieslist(196) = "sri lanka"
countrieslist(197) = "sudan"
countrieslist(198) = "suriname"
countrieslist(199) = "svalbard and jan mayen islands"
countrieslist(200) = "swaziland"
countrieslist(201) = "sweden"
countrieslist(202) = "switzerland"
countrieslist(203) = "syria"
countrieslist(204) = "taiwan"
countrieslist(205) = "tajikistan"
countrieslist(206) = "tanzania"
countrieslist(207) = "thailand"
countrieslist(208) = "east timor"
countrieslist(209) = "togo"
countrieslist(210) = "tokelau"
countrieslist(211) = "tonga"
countrieslist(212) = "trinidad and tobago"
countrieslist(213) = "tunisia"
countrieslist(214) = "turkey"
countrieslist(215) = "turkmenistan"
countrieslist(216) = "turks and caicos islands"
countrieslist(217) = "tuvalu"
countrieslist(218) = "uganda"
countrieslist(219) = "ukraine"
countrieslist(220) = "united arab emirates"
countrieslist(221) = "united kingdom"
countrieslist(222) = "united states"
countrieslist(223) = "uruguay"
countrieslist(224) = "uzbekistan"
countrieslist(225) = "vanuatu"
countrieslist(226) = "venezuela"
countrieslist(227) = "vietnam"
countrieslist(228) = "virgin islands"
countrieslist(229) = "wallis and futuna islands"
countrieslist(230) = "yemen"
countrieslist(231) = "zambia"
countrieslist(232) = "zimbabwe"
End Sub
Public Sub makecarbrandslist()
carbrandslist(0) = "8 chinkara"
carbrandslist(1) = "aba"
carbrandslist(2) = "abarth"
carbrandslist(3) = "ac"
carbrandslist(4) = "ac schnitzer"
carbrandslist(5) = "acura"
carbrandslist(6) = "adam"
carbrandslist(7) = "adams-farwell"
carbrandslist(8) = "adler"
carbrandslist(9) = "aero"
carbrandslist(10) = "aga"
carbrandslist(11) = "agrale"
carbrandslist(12) = "aixam"
carbrandslist(13) = "alfa romeo"
carbrandslist(14) = "allard"
carbrandslist(15) = "alpine"
carbrandslist(16) = "alvis"
carbrandslist(17) = "anadol"
carbrandslist(18) = "anasagasti"
carbrandslist(19) = "angkor"
carbrandslist(20) = "apollo"
carbrandslist(21) = "armstrong siddeley"
carbrandslist(22) = "aro"
carbrandslist(23) = "ascari"
carbrandslist(24) = "ashok leyland"
carbrandslist(25) = "aston martin"
carbrandslist(26) = "auburn"
carbrandslist(27) = "audi"
carbrandslist(28) = "austin"
carbrandslist(29) = "austin-healey"
carbrandslist(30) = "auto-mixte"
carbrandslist(31) = "autobianchi"
carbrandslist(32) = "automobile dacia"
carbrandslist(33) = "avia"
carbrandslist(34) = "avtoframos"
carbrandslist(35) = "awz"
carbrandslist(36) = "bahman"
carbrandslist(37) = "bajaj"
carbrandslist(38) = "barkas"
carbrandslist(39) = "bate"
carbrandslist(40) = "bentley"
carbrandslist(41) = "bharath benz"
carbrandslist(42) = "bitter"
carbrandslist(43) = "bmc"
carbrandslist(44) = "bmw"
carbrandslist(45) = "bollore"
carbrandslist(46) = "borgward"
carbrandslist(47) = "bricklin"
carbrandslist(48) = "bristol"
carbrandslist(49) = "british leyland"
carbrandslist(50) = "bufori"
carbrandslist(51) = "bugatti"
carbrandslist(52) = "buick"
carbrandslist(53) = "bussing"
carbrandslist(54) = "c-fee"
carbrandslist(55) = "cadillac"
carbrandslist(56) = "callaway"
carbrandslist(57) = "caterham"
carbrandslist(58) = "cherdchai"
carbrandslist(59) = "chevrolet"
carbrandslist(60) = "chrysler"
carbrandslist(61) = "citroen"
carbrandslist(62) = "cizeta"
carbrandslist(63) = "coda"
carbrandslist(64) = "cord"
carbrandslist(65) = "crespi"
carbrandslist(66) = "crobus"
carbrandslist(67) = "daf"
carbrandslist(68) = "daihatsu"
carbrandslist(69) = "daimler"
carbrandslist(70) = "datsun"
carbrandslist(71) = "davis"
carbrandslist(72) = "dc design"
carbrandslist(73) = "de tomaso"
carbrandslist(74) = "delorean"
carbrandslist(75) = "derby"
carbrandslist(76) = "dina"
carbrandslist(77) = "dkw"
carbrandslist(78) = "dodge"
carbrandslist(79) = "dok-ing"
carbrandslist(80) = "dok-ing xd"
carbrandslist(81) = "dome"
carbrandslist(82) = "donkervoort"
carbrandslist(83) = "dr"
carbrandslist(84) = "duesenberg"
carbrandslist(85) = "e-z-go"
carbrandslist(86) = "eagle"
carbrandslist(87) = "edsel"
carbrandslist(88) = "eicher"
carbrandslist(89) = "elfin"
carbrandslist(90) = "elva"
carbrandslist(91) = "enzmann"
carbrandslist(92) = "essex"
carbrandslist(93) = "esther"
carbrandslist(94) = "exagon"
carbrandslist(95) = "falcon"
carbrandslist(96) = "fap"
carbrandslist(97) = "ferrari"
carbrandslist(98) = "fiat"
carbrandslist(99) = "fisker"
carbrandslist(100) = "force"
carbrandslist(101) = "ford"
carbrandslist(102) = "fpv"
carbrandslist(103) = "gaz"
carbrandslist(104) = "gengatharan"
carbrandslist(105) = "geo"
carbrandslist(106) = "ghandhara"
carbrandslist(107) = "ghandhara nissan"
carbrandslist(108) = "gillet"
carbrandslist(109) = "ginetta"
carbrandslist(110) = "gkd"
carbrandslist(111) = "glas"
carbrandslist(112) = "global electric"
carbrandslist(113) = "gm daewoo"
carbrandslist(114) = "gm uzbekistan"
carbrandslist(115) = "gmc"
carbrandslist(116) = "goliath"
carbrandslist(117) = "gordon keeble"
carbrandslist(118) = "graham-paige"
carbrandslist(119) = "guleryuz karoseri"
carbrandslist(120) = "gumpert"
carbrandslist(121) = "gurgel"
carbrandslist(122) = "hansa"
carbrandslist(123) = "hattat"
carbrandslist(124) = "heinkel"
carbrandslist(125) = "hennessey"
carbrandslist(126) = "hero"
carbrandslist(127) = "hillman"
carbrandslist(128) = "hindustan"
carbrandslist(129) = "hino"
carbrandslist(130) = "hinopak"
carbrandslist(131) = "hispano-argentina"
carbrandslist(132) = "holden"
carbrandslist(133) = "hommell"
carbrandslist(134) = "honda"
carbrandslist(135) = "honda atlas"
carbrandslist(136) = "horch"
carbrandslist(137) = "hsv"
carbrandslist(138) = "huet brothers"
carbrandslist(139) = "humber"
carbrandslist(140) = "hummer"
carbrandslist(141) = "hupmobile"
carbrandslist(142) = "hyundai"
carbrandslist(143) = "iame"
carbrandslist(144) = "icml"
carbrandslist(145) = "ida-opel"
carbrandslist(146) = "ika"
carbrandslist(147) = "ikarbus"
carbrandslist(148) = "ikco"
carbrandslist(149) = "indus"
carbrandslist(150) = "infiniti"
carbrandslist(151) = "inokom"
carbrandslist(152) = "intermeccanica"
carbrandslist(153) = "international harvester"
carbrandslist(154) = "isuzu"
carbrandslist(155) = "isuzu anadolu"
carbrandslist(156) = "italika"
carbrandslist(157) = "izh"
carbrandslist(158) = "jaguar cars"
carbrandslist(159) = "jeep"
carbrandslist(160) = "jensen"
carbrandslist(161) = "josse"
carbrandslist(162) = "jowett"
carbrandslist(163) = "jv man"
carbrandslist(164) = "kaipan"
carbrandslist(165) = "kaiser"
carbrandslist(166) = "karsan"
carbrandslist(167) = "kerman"
carbrandslist(168) = "kia"
carbrandslist(169) = "kia"
carbrandslist(170) = "kish khodro"
carbrandslist(171) = "kissel"
carbrandslist(172) = "koenigsegg"
carbrandslist(173) = "lada"
carbrandslist(174) = "laforza"
carbrandslist(175) = "lamborghini"
carbrandslist(176) = "lanchester"
carbrandslist(177) = "lancia"
carbrandslist(178) = "land rover"
carbrandslist(179) = "lasalle"
carbrandslist(180) = "lexus"
carbrandslist(181) = "ligier"
carbrandslist(182) = "lincoln"
carbrandslist(183) = "lister"
carbrandslist(184) = "lloyd"
carbrandslist(185) = "lobini"
carbrandslist(186) = "locomobile"
carbrandslist(187) = "lotus"
carbrandslist(188) = "mahindra"
carbrandslist(189) = "man"
carbrandslist(190) = "mansory"
carbrandslist(191) = "marcos"
carbrandslist(192) = "marmon"
carbrandslist(193) = "marussia"
carbrandslist(194) = "maruti suzuki"
carbrandslist(195) = "maserati"
carbrandslist(196) = "master"
carbrandslist(197) = "mastretta"
carbrandslist(198) = "matra"
carbrandslist(199) = "maybach"
carbrandslist(200) = "mazda"
carbrandslist(201) = "mclaren"
carbrandslist(202) = "mdi"
carbrandslist(203) = "mercedes"
carbrandslist(204) = "mercury"
carbrandslist(205) = "micro"
carbrandslist(206) = "microcar"
carbrandslist(207) = "mini"
carbrandslist(208) = "mini cooper"
carbrandslist(209) = "mitsubishi"
carbrandslist(210) = "mitsuoka"
carbrandslist(211) = "morgan"
carbrandslist(212) = "morris"
carbrandslist(213) = "moskvitch"
carbrandslist(214) = "mosler"
carbrandslist(215) = "multicar"
carbrandslist(216) = "mvm"
carbrandslist(217) = "nag"
carbrandslist(218) = "nagant"
carbrandslist(219) = "nash"
carbrandslist(220) = "navistar"
carbrandslist(221) = "naza"
carbrandslist(222) = "neobus"
carbrandslist(223) = "neoplan"
carbrandslist(224) = "nissan"
carbrandslist(225) = "noble"
carbrandslist(226) = "nsu"
carbrandslist(227) = "oldsmobile"
carbrandslist(228) = "oltcit"
carbrandslist(229) = "opel"
carbrandslist(230) = "orient"
carbrandslist(231) = "otokar"
carbrandslist(232) = "otosan"
carbrandslist(233) = "oyak"
carbrandslist(234) = "p.a.r.s moto"
carbrandslist(235) = "packard"
carbrandslist(236) = "pagani"
carbrandslist(237) = "pak suzuki"
carbrandslist(238) = "panoz"
carbrandslist(239) = "pars khodro"
carbrandslist(240) = "perodua"
carbrandslist(241) = "peugeot"
carbrandslist(242) = "pgo"
carbrandslist(243) = "pieper"
carbrandslist(244) = "pierce-arrow"
carbrandslist(245) = "plymouth"
carbrandslist(246) = "pontiac"
carbrandslist(247) = "porsche"
carbrandslist(248) = "praga"
carbrandslist(249) = "premier"
carbrandslist(250) = "proto"
carbrandslist(251) = "proton"
carbrandslist(252) = "puma"
carbrandslist(253) = "ram"
carbrandslist(254) = "ramirez"
carbrandslist(255) = "regal"
carbrandslist(256) = "renault"
carbrandslist(257) = "renault samsung"
carbrandslist(258) = "reo"
carbrandslist(259) = "riley"
carbrandslist(260) = "rimac"
carbrandslist(261) = "robur"
carbrandslist(262) = "rolls royce"
carbrandslist(263) = "rover"
carbrandslist(264) = "ruf"
carbrandslist(265) = "russo-balt"
carbrandslist(266) = "saab"
carbrandslist(267) = "saipa"
carbrandslist(268) = "saleen"
carbrandslist(269) = "samavto"
carbrandslist(270) = "saturn"
carbrandslist(271) = "sbarro"
carbrandslist(272) = "scania"
carbrandslist(273) = "scion"
carbrandslist(274) = "shane moto"
carbrandslist(275) = "siam v.m.c."
carbrandslist(276) = "siata"
carbrandslist(277) = "simson"
carbrandslist(278) = "singer"
carbrandslist(279) = "skoda"
carbrandslist(280) = "sound"
carbrandslist(281) = "spyker"
carbrandslist(282) = "ssangyong"
carbrandslist(283) = "standard"
carbrandslist(284) = "stealth"
carbrandslist(285) = "sterling"
carbrandslist(286) = "studebaker"
carbrandslist(287) = "subaru"
carbrandslist(288) = "sunbeam"
carbrandslist(289) = "suzuki"
carbrandslist(290) = "tac"
carbrandslist(291) = "tafe"
carbrandslist(292) = "tata"
carbrandslist(293) = "tatra"
carbrandslist(294) = "td2000"
carbrandslist(295) = "temsa"
carbrandslist(296) = "tesla"
carbrandslist(297) = "th!nk"
carbrandslist(298) = "thai rung"
carbrandslist(299) = "the jamie stahley car"
carbrandslist(300) = "tickford"
carbrandslist(301) = "toyota"
carbrandslist(302) = "trabant"
carbrandslist(303) = "tranvias-cimex"
carbrandslist(304) = "triumph"
carbrandslist(305) = "trojan"
carbrandslist(306) = "troller"
carbrandslist(307) = "tucker"
carbrandslist(308) = "turk traktor"
carbrandslist(309) = "tvr"
carbrandslist(310) = "tvs"
carbrandslist(311) = "uaz"
carbrandslist(312) = "vam sa"
carbrandslist(313) = "vauxhall"
carbrandslist(314) = "venturi"
carbrandslist(315) = "vignale"
carbrandslist(316) = "volkswagen"
carbrandslist(317) = "volvo"
carbrandslist(318) = "wanderer"
carbrandslist(319) = "wartburg"
carbrandslist(320) = "wiesmann"
carbrandslist(321) = "willys"
carbrandslist(322) = "wolseley"
carbrandslist(323) = "yamaha"
carbrandslist(324) = "yo-mobile"
carbrandslist(325) = "zastava"
carbrandslist(326) = "zenvo"
carbrandslist(327) = "zil"
carbrandslist(328) = "zoragy"
End Sub
Public Sub makegameconsoleslist()
gameconsoleslist(0) = "magnavox odyssey"
gameconsoleslist(1) = "ping-o-tronic"
gameconsoleslist(2) = "telstar"
gameconsoleslist(3) = "apf tv fun"
gameconsoleslist(4) = "philips odyssey"
gameconsoleslist(5) = "radio shack tv scoreboard"
gameconsoleslist(6) = "binatone tv master mk iv"
gameconsoleslist(7) = "color tv game 6"
gameconsoleslist(8) = "color tv game 15"
gameconsoleslist(9) = "color tv racing 112"
gameconsoleslist(10) = "color tv game block breaker"
gameconsoleslist(11) = "computer tv game"
gameconsoleslist(12) = "bss 01"
gameconsoleslist(13) = "fairchild channel f"
gameconsoleslist(14) = "fairchild channel f system ii"
gameconsoleslist(15) = "rca studio ii"
gameconsoleslist(16) = "atari 2600"
gameconsoleslist(17) = "atari 2600 jr"
gameconsoleslist(18) = "atari 2800"
gameconsoleslist(19) = "coleco gemini"
gameconsoleslist(20) = "bally astrocade"
gameconsoleslist(21) = "vc 4000"
gameconsoleslist(22) = "magnavox odyssey 2"
gameconsoleslist(23) = "apf imagination machine"
gameconsoleslist(24) = "intellivision"
gameconsoleslist(25) = "playcable"
gameconsoleslist(26) = "bandai super vision 8000"
gameconsoleslist(27) = "intellivision ii"
gameconsoleslist(28) = "vtech creativision"
gameconsoleslist(29) = "epoch cassette vision"
gameconsoleslist(30) = "super cassette vision"
gameconsoleslist(31) = "arcadia 2001"
gameconsoleslist(32) = "atari 5200"
gameconsoleslist(33) = "atari 5100"
gameconsoleslist(34) = "colecovision"
gameconsoleslist(35) = "entex adventure vision"
gameconsoleslist(36) = "vectrex"
gameconsoleslist(37) = "rdi halcyon"
gameconsoleslist(38) = "pv-1000"
gameconsoleslist(39) = "commodore 64 games system"
gameconsoleslist(40) = "amstrad gx4000"
gameconsoleslist(41) = "atari 7800"
gameconsoleslist(42) = "atari xegs"
gameconsoleslist(43) = "sega sg-1000"
gameconsoleslist(44) = "sega master system"
gameconsoleslist(45) = "nintendo entertainment system"
gameconsoleslist(46) = "sharp nintendo television"
gameconsoleslist(47) = "nes-101"
gameconsoleslist(48) = "family computer disk system"
gameconsoleslist(49) = "zemmix"
gameconsoleslist(50) = "action max"
gameconsoleslist(51) = "sega genesis"
gameconsoleslist(52) = "sega pico"
gameconsoleslist(53) = "pc engine"
gameconsoleslist(54) = "konix multisystem"
gameconsoleslist(55) = "neo-geo"
gameconsoleslist(56) = "neo-geo cd"
gameconsoleslist(57) = "neo-geo cdz"
gameconsoleslist(58) = "commodore cdtv"
gameconsoleslist(59) = "memorex vis"
gameconsoleslist(60) = "super nintendo entertainment system"
gameconsoleslist(61) = "sf-1 snes tv"
gameconsoleslist(62) = "snes 2"
gameconsoleslist(63) = "snes-cd"
gameconsoleslist(64) = "satellaview"
gameconsoleslist(65) = "cd-i"
gameconsoleslist(66) = "turboduo"
gameconsoleslist(67) = "super a'can"
gameconsoleslist(68) = "pioneer laseractive"
gameconsoleslist(69) = "fm towns marty"
gameconsoleslist(70) = "apple bandai pippin"
gameconsoleslist(71) = "pc-fx"
gameconsoleslist(72) = "atari panther"
gameconsoleslist(73) = "atari jaguar"
gameconsoleslist(74) = "atari jaguar cd"
gameconsoleslist(75) = "playstation"
gameconsoleslist(76) = "net yaroze"
gameconsoleslist(77) = "sega saturn"
gameconsoleslist(78) = "3do interactive multiplayer"
gameconsoleslist(79) = "amiga cd32"
gameconsoleslist(80) = "casio loopy"
gameconsoleslist(81) = "playdia"
gameconsoleslist(82) = "nintendo 64"
gameconsoleslist(83) = "nintendo 64dd"
gameconsoleslist(84) = "sega neptune"
gameconsoleslist(85) = "apextreme"
gameconsoleslist(86) = "atari flashback"
gameconsoleslist(87) = "atari jaguar ii"
gameconsoleslist(88) = "dreamcast"
gameconsoleslist(89) = "l600"
gameconsoleslist(90) = "gamecube"
gameconsoleslist(91) = "nuon"
gameconsoleslist(92) = "ique player"
gameconsoleslist(93) = "panasonic m2"
gameconsoleslist(94) = "panasonic q"
gameconsoleslist(95) = "playstation 2"
gameconsoleslist(96) = "psx"
gameconsoleslist(97) = "v.smile"
gameconsoleslist(98) = "xavixport gaming console"
gameconsoleslist(99) = "xbox"
gameconsoleslist(100) = "atari flashback 2"
gameconsoleslist(101) = "atari flashback 3"
gameconsoleslist(102) = "atari flashback 4"
gameconsoleslist(103) = "evo smart console"
gameconsoleslist(104) = "retro duo"
gameconsoleslist(105) = "game wave"
gameconsoleslist(106) = "mattel hyperscan"
gameconsoleslist(107) = "onlive"
gameconsoleslist(108) = "phantom"
gameconsoleslist(109) = "playstation 3"
gameconsoleslist(110) = "wii"
gameconsoleslist(111) = "xbox 360"
gameconsoleslist(112) = "sega firecore"
gameconsoleslist(113) = "zeebo"
gameconsoleslist(114) = "sega zone"
gameconsoleslist(115) = "eedoo ct510"
gameconsoleslist(116) = "wii u"
gameconsoleslist(117) = "ouya"
gameconsoleslist(118) = "gamestick"
gameconsoleslist(119) = "mojo"
gameconsoleslist(120) = "gamepop"
gameconsoleslist(121) = "playstation 4"
gameconsoleslist(122) = "steam machine"
gameconsoleslist(123) = "xbox one"
gameconsoleslist(124) = "xi3 piston"
End Sub
Public Sub makeelementslist()
elementslist(0) = "hydrogen"
elementslist(1) = "helium"
elementslist(2) = "lithium"
elementslist(3) = "beryllium"
elementslist(4) = "boron"
elementslist(5) = "carbon"
elementslist(6) = "nitrogen"
elementslist(7) = "oxygen"
elementslist(8) = "fluorine"
elementslist(9) = "neon"
elementslist(10) = "sodium"
elementslist(11) = "magnesium"
elementslist(12) = "aluminium"
elementslist(13) = "silicon"
elementslist(14) = "phosphorus"
elementslist(15) = "sulfur"
elementslist(16) = "chlorine"
elementslist(17) = "argon"
elementslist(18) = "potassium"
elementslist(19) = "calcium"
elementslist(20) = "scandium"
elementslist(21) = "titanium"
elementslist(22) = "vanadium"
elementslist(23) = "chromium"
elementslist(24) = "manganese"
elementslist(25) = "iron"
elementslist(26) = "cobalt"
elementslist(27) = "nickel"
elementslist(28) = "copper"
elementslist(29) = "zinc"
elementslist(30) = "gallium"
elementslist(31) = "germanium"
elementslist(32) = "arsenic"
elementslist(33) = "selenium"
elementslist(34) = "bromine"
elementslist(35) = "krypton"
elementslist(36) = "rubidium"
elementslist(37) = "strontium"
elementslist(38) = "yttrium"
elementslist(39) = "zirconium"
elementslist(40) = "niobium"
elementslist(41) = "molybdenum"
elementslist(42) = "technetium"
elementslist(43) = "ruthenium"
elementslist(44) = "rhodium"
elementslist(45) = "palladium"
elementslist(46) = "silver"
elementslist(47) = "cadmium"
elementslist(48) = "indium"
elementslist(49) = "tin"
elementslist(50) = "antimony"
elementslist(51) = "tellurium"
elementslist(52) = "iodine"
elementslist(53) = "xenon"
elementslist(54) = "caesium"
elementslist(55) = "barium"
elementslist(56) = "lanthanum"
elementslist(57) = "cerium"
elementslist(58) = "praseodymium"
elementslist(59) = "neodymium"
elementslist(60) = "promethium"
elementslist(61) = "samarium"
elementslist(62) = "europium"
elementslist(63) = "gadolinium"
elementslist(64) = "terbium"
elementslist(65) = "dysprosium"
elementslist(66) = "holmium"
elementslist(67) = "erbium"
elementslist(68) = "thulium"
elementslist(69) = "ytterbium"
elementslist(70) = "lutetium"
elementslist(71) = "hafnium"
elementslist(72) = "tantalum"
elementslist(73) = "tungsten"
elementslist(74) = "rhenium"
elementslist(75) = "osmium"
elementslist(76) = "iridium"
elementslist(77) = "platinum"
elementslist(78) = "gold"
elementslist(79) = "mercury"
elementslist(80) = "thallium"
elementslist(81) = "lead"
elementslist(82) = "bismuth"
elementslist(83) = "polonium"
elementslist(84) = "astatine"
elementslist(85) = "radon"
elementslist(86) = "francium"
elementslist(87) = "radium"
elementslist(88) = "actinium"
elementslist(89) = "thorium"
elementslist(90) = "protactinium"
elementslist(91) = "uranium"
elementslist(92) = "neptunium"
elementslist(93) = "plutonium"
elementslist(94) = "americium"
elementslist(95) = "curium"
elementslist(96) = "berkelium"
elementslist(97) = "californium"
elementslist(98) = "einsteinium"
elementslist(99) = "fermium"
elementslist(100) = "mendelevium"
elementslist(101) = "nobelium"
elementslist(102) = "lawrencium"
elementslist(103) = "rutherfordium"
elementslist(104) = "dubnium"
elementslist(105) = "seaborgium"
elementslist(106) = "bohrium"
elementslist(107) = "hassium"
elementslist(108) = "meitnerium"
elementslist(109) = "darmstadtium"
elementslist(110) = "roentgenium"
elementslist(111) = "copernicium"
elementslist(112) = "ununtrium"
elementslist(113) = "flerovium"
elementslist(114) = "ununpentium"
elementslist(115) = "livermorium"
elementslist(116) = "ununseptium"
elementslist(117) = "ununoctium"
End Sub
End Class
|