-
Notifications
You must be signed in to change notification settings - Fork 0
/
soletrando.vbs
516 lines (415 loc) · 11.6 KB
/
soletrando.vbs
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
dim user, sorteio_op1, sorteio_op2, sorteio_op3, sorteio_op4, n
dim nivel1(5), nivel2(5), nivel3(5), nivel4(5), a(20), i
dim audio, chance, pulo, res1, acerto, nivel
dim plv(4), plv2(4), plv3(4), plv4(4), plv5(4)
call carregar_audio
sub carregar_audio()
set audio=createobject("SAPI.SPVOICE")
audio.volume=100
audio.rate=1
call inicio
end sub
sub inicio()
sorteio_op1 = 0
acerto = 0
pulo = 1
Do
user=Ucase(inputbox("SEJA BEM-VINDO(A) AO SOLETRANDO"+ vbNewLine &_
"==================================="+ vbNewLine &_
"PREPARE-SE, APÓS DIGITAR SEU NOME A PRIMEIRA PALAVRA SERÁ FALADA"+ vbNewLine &_
"==================================="+ vbNewLine &_
"DIGITE SEU NOME"))
if IsEmpty(user) then
wscript.quit
end if
user=Trim(user)
Loop Until user > ""
call sortear
end sub
sub fim_de_jogo()
audio.speak ("VOCÊ PERDEU "& user & "")
n=(msgbox("QUE PENA, VOCÊ ERROU!"+ vbNewLine &_
"QUANTIDADE DE ACERTOS: "& acerto & " DE 12"+ vbNewLine &_
"NÍVEL " & nivel & ""+ vbNewLine &_
"DESEJA JOGAR NOVAMENTE? ",vbQuestion + vbYesNo,"FIM DE JOGO"))
if n = vbYes then
call carregar_audio
else
wscript.quit
end if
end sub
sub sortear()
chance = 1
if acerto < 3 Then
nivel1(1) = "CUPIM"
nivel1(2) = "JILÓ"
nivel1(3) = "CHÁCARA"
nivel1(4) = "ESCADARIA"
nivel1(5) = "CADEADO"
for n=1 to 5 step 1
randomize(second(time))
sorteio_op1=int(rnd * 5) + 1
next
if plv(1) = nivel1(sorteio_op1) Then
do while plv(1) = nivel1(sorteio_op1)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op1=int(rnd * 5) + 1
next
loop
plv2(1) = nivel1(sorteio_op1)
elseif plv(1) = plv2(1) Then
do while plv2(1) = nivel1(sorteio_op1)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op1=int(rnd * 5) + 1
next
loop
plv3(1) = nivel1(sorteio_op1)
elseif plv(1) = plv3(1) Then
do while plv3(1) = nivel1(sorteio_op1)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op1=int(rnd * 5) + 1
next
loop
plv4(1) = nivel1(sorteio_op1)
elseif plv(1) = plv4(1) Then
do while plv4(1) = nivel1(sorteio_op1)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op1=int(rnd * 5) + 1
next
loop
plv5(1) = nivel1(sorteio_op1)
elseif plv(1) = plv5(1) Then
do while plv5(1) = nivel1(sorteio_op1)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op1=int(rnd * 5) + 1
next
loop
end if
call falar
elseif acerto > 2 AND acerto < 6 Then
nivel2(1) = "HIGIENE"
nivel2(2) = "FILOSOFAR"
nivel2(3) = "MÍOPE"
nivel2(4) = "FÓSFORO"
nivel2(5) = "CHUCHU"
for n=1 to 5 step 1
randomize(second(time))
sorteio_op2=int(rnd * 5) + 1
next
if plv(2) = nivel2(sorteio_op2) Then
do while plv(2) = nivel2(sorteio_op2)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op2=int(rnd * 5) + 1
next
loop
plv2(2) = nivel2(sorteio_op2)
elseif plv(2) = plv2(2) Then
do while plv2(2) = nivel2(sorteio_op2)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op2=int(rnd * 5) + 1
next
loop
plv3(2) = nivel2(sorteio_op2)
elseif plv(2) = plv3(2) Then
do while plv3(2) = nivel2(sorteio_op2)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op2=int(rnd * 5) + 1
next
loop
plv4(2) = nivel2(sorteio_op2)
elseif plv(2) = plv4(2) Then
do while plv4(2) = nivel2(sorteio_op2)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op2=int(rnd * 5) + 1
next
loop
plv5(2) = nivel2(sorteio_op2)
elseif plv(2) = plv5(2) Then
do while plv5(2) = nivel2(sorteio_op2)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op2=int(rnd * 5) + 1
next
loop
end if
call falar
elseif acerto > 5 AND acerto < 9 Then
nivel3(1) = "XÍCARA"
nivel3(2) = "ÂMBAR"
nivel3(3) = "ACADÊMICO"
nivel3(4) = "DILIGÊNCIA"
nivel3(5) = "PROPÓSITO"
for n=1 to 5 step 1
randomize(second(time))
sorteio_op3=int(rnd * 5) + 1
next
if plv(3) = nivel3(sorteio_op3) Then
do while plv(3) = nivel3(sorteio_op3)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op3=int(rnd * 5) + 1
next
loop
plv2(3) = nivel3(sorteio_op3)
elseif plv(3) = plv2(3) Then
do while plv2(3) = nivel3(sorteio_op3)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op3=int(rnd * 5) + 1
next
loop
plv3(3) = nivel3(sorteio_op3)
elseif plv(3) = plv3(3) Then
do while plv3(3) = nivel3(sorteio_op3)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op3=int(rnd * 5) + 1
next
loop
plv4(3) = nivel3(sorteio_op3)
elseif plv(3) = plv4(3) Then
do while plv4(3) = nivel3(sorteio_op3)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op3=int(rnd * 5) + 1
next
loop
plv5(3) = nivel3(sorteio_op3)
elseif plv(3) = plv5(3) Then
do while plv5(3) = nivel3(sorteio_op3)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op3=int(rnd * 5) + 1
next
loop
end if
call falar
elseif acerto > 8 AND acerto < 12 Then
nivel4(1) = "CONDOLÊNCIAS"
nivel4(2) = "SUPÉRFLUO"
nivel4(3) = "PARCIMÔNIA"
nivel4(4) = "COMPLACÊNCIA"
nivel4(5) = "ESDRÚXULO"
for n=1 to 5 step 1
randomize(second(time))
sorteio_op4=int(rnd * 5) + 1
next
if plv(4) = nivel4(sorteio_op4) Then
do while plv(4) = nivel4(sorteio_op4)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op4=int(rnd * 5) + 1
next
loop
plv2(4) = nivel4(sorteio_op4)
elseif plv(4) = plv2(4) Then
do while plv2(4) = nivel4(sorteio_op4)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op4=int(rnd * 5) + 1
next
loop
plv3(4) = nivel4(sorteio_op4)
elseif plv(4) = plv3(4) Then
do while plv3(4) = nivel4(sorteio_op4)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op4=int(rnd * 5) + 1
next
loop
plv4(4) = nivel4(sorteio_op4)
elseif plv(4) = plv4(4) Then
do while plv4(4) = nivel4(sorteio_op4)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op4=int(rnd * 5) + 1
next
loop
plv5(4) = nivel4(sorteio_op4)
elseif plv(4) = plv5(4) Then
do while plv5(4) = nivel4(sorteio_op4)
for n=1 to 5 step 1
randomize(second(time))
sorteio_op4=int(rnd * 5) + 1
next
loop
end if
call falar
end if
end sub
sub falar()
if acerto < 3 Then
nivel=1
audio.speak ("A palavra é " + nivel1(sorteio_op1))
call texto
elseif acerto > 2 AND acerto < 6 Then
nivel=2
audio.speak ("A palavra é " + nivel2(sorteio_op2))
call texto
elseif acerto > 5 AND acerto < 9 Then
nivel=3
audio.speak ("A palavra é " + nivel3(sorteio_op3))
call texto
elseif acerto > 8 AND acerto < 12 Then
nivel=4
audio.speak ("A palavra é " + nivel4(sorteio_op4))
call texto
end if
end sub
sub texto()
res1 = 0
res1=Ucase(inputbox("NÍVEL "& nivel &""+ vbNewLine + vbNewLine &_
"DIGITE A PALAVRA OUVIDA"+ vbNewLine + vbNewLine &_
"NOME DO JOGADOR: "& user & "" + vbNewLine + vbNewLine &_
"================================" + vbNewLine &_
"[O]UVIR NOVAMENTE A PALAVRA" + vbNewLine &_
"[P]ULAR A PALAVRA UMA ÚNICA VEZ" + vbNewLine &_
"================================"))
if acerto < 3 Then
call carregar_fase1
elseif acerto > 2 AND acerto < 6 Then
call carregar_fase2
elseif acerto > 5 AND acerto < 9 Then
call carregar_fase3
elseif acerto > 8 AND acerto < 12 Then
call carregar_fase4
end if
end sub
sub carregar_fase1()
if res1 = "O" Then
if chance > 0 Then
chance = chance - 1
call falar
else
msgbox("VOCÊ JÁ OUVIU A PALAVRA DUAS VEZES!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = "P" Then
if pulo > 0 Then
pulo = pulo - 1
call sortear
else
msgbox("VOCÊ JÁ PULOU A PALAVRA!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = nivel1(sorteio_op1) Then
acerto = acerto + 1
plv(1) = nivel1(sorteio_op1)
msgbox("PARABÉNS VOCÊ ACERTOU!" + vbNewLine &_
"QUANTIDADE DE ACERTOS: "& acerto & " DE 12"+ vbNewLine &_
"NÍVEL 1"),vbInformation+vbOKOnly,"ATENÇÃO"
call sortear
elseif res1 <> nivel1(sorteio_op1) Then
call fim_de_jogo
end if
call sortear
end sub
sub carregar_fase2()
if res1 = "O" Then
if chance > 0 Then
chance = chance - 1
call falar
else
msgbox("VOCÊ JÁ OUVIU A PALAVRA DUAS VEZES!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = "P" Then
if pulo > 0 Then
pulo = pulo - 1
call sortear
else
msgbox("VOCÊ JÁ PULOU A PALAVRA!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = nivel2(sorteio_op2) Then
acerto = acerto + 1
msgbox("PARABÉNS VOCÊ ACERTOU!"+ vbNewLine &_
"QUANTIDADE DE ACERTOS: "& acerto & " DE 12"+ vbNewLine &_
"NÍVEL 2"),vbInformation+vbOKOnly,"ATENÇÃO"
plv(2) = nivel2(sorteio_op2)
call sortear
elseif res1 <> nivel2(sorteio_op2) Then
call fim_de_jogo
end if
call sortear
end sub
sub carregar_fase3()
if res1 = "O" Then
if chance > 0 Then
chance = chance - 1
call falar
else
msgbox("VOCÊ JÁ OUVIU A PALAVRA DUAS VEZES!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = "P" Then
if pulo > 0 Then
pulo = pulo - 1
call sortear
else
msgbox("VOCÊ JÁ PULOU A PALAVRA!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = nivel3(sorteio_op3) Then
acerto = acerto + 1
msgbox("PARABÉNS VOCÊ ACERTOU!"+ vbNewLine &_
"QUANTIDADE DE ACERTOS: "& acerto & " DE 12"+ vbNewLine &_
"NÍVEL 3"),vbInformation+vbOKOnly,"ATENÇÃO"
plv(3) = nivel3(sorteio_op3)
call sortear
elseif res1 <> nivel3(sorteio_op3) Then
call fim_de_jogo
end if
call sortear
end sub
sub carregar_fase4()
if res1 = "O" Then
if chance > 0 Then
chance = chance - 1
call falar
else
msgbox("VOCÊ JÁ OUVIU A PALAVRA DUAS VEZES!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = "P" Then
if pulo > 0 Then
pulo = pulo - 1
call sortear
else
msgbox("VOCÊ JÁ PULOU A PALAVRA!"),vbInformation+vbOKOnly,"ATENÇÃO"
call texto
end if
elseif res1 = nivel4(sorteio_op4) Then
acerto = acerto + 1
msgbox("PARABÉNS VOCÊ ACERTOU!"+ vbNewLine &_
"QUANTIDADE DE ACERTOS: "& acerto & " DE 12"+ vbNewLine &_
"NÍVEL 4"),vbInformation+vbOKOnly,"ATENÇÃO"
plv(4) = nivel4(sorteio_op4)
call sortear
elseif res1 <> nivel4(sorteio_op4) Then
call fim_de_jogo
end if
call venceu
end sub
sub venceu()
audio.speak ("PARABÉNS, VOCÊ VENCEU O SOLETRANDO "& user & "")
n=0
n=(msgbox("VOCÊ VENCEU " & user & "!"+ vbNewLine &_
"QUANTIDADE DE ACERTOS: "& acerto & " "+ vbNewLine &_
"NÍVEL " & nivel & ""+ vbNewLine &_
"DESEJA JOGAR NOVAMENTE? ",vbQuestion + vbYesNo,"FIM DE JOGO"))
if n = vbYes then
call carregar_audio
else
wscript.quit
end if
end sub