-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruletka.lua
55 lines (50 loc) · 1.61 KB
/
ruletka.lua
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
dofile "db.lua"
local num = 12
local win = 1
math.randomseed(os.time())
-- магия
local handle = io.popen('whoami')
local user = handle:read("*a")
handle:close()
user = user:gsub("^%s*(.-)%s*$", "%1")
local id = dbGetUserID(user)
if id == 0 then
id = dbAddUser(user)
end
function ruletka()
local countwins = 0
for i = 1,num do
::Input::
local s = tonumber(io.read())
if (s == nil) or (s<1) or (s>num) then
print("неподдерживаемое значение")
goto Input
end
local v = math.random(1,num)
if s == v then
print('вы угадали, на рулетке выпало значение ', v)
countwins = countwins+1
else
print('вы не угадали, на рулетке выпало значение ', v)
end
if countwins > win then
break
end
end
if countwins > win then
return 3
elseif countwins > 0 then
return 1
end
return -3
end
if arg[1] ~= '-s' then
local gamescore = ruletka()
dbAddGame(id, gamescore)
end
print('количество сыгранных партий: ', dbCountGames(id, 0), '\nв том числе полностью выигранных:',
dbCountGames(id, 3), '\n(последняя игра: '..dbGetDateLast(id,3)..')',
'\nчастично выигранных:', dbCountGames(id, 1),'\n(последняя игра: '..dbGetDateLast(id,1)..')',
'\nпроиграннных:', dbCountGames(id, -3), '\n(последняя игра: '..dbGetDateLast(id,-3)..')')
print('\nваш рейтинг:' , dbGetRaiting(id))
print('место в рейтинге: ', dbGetRank(id))