Why might you make a game Excel? For learning and for fun. So let's get to it.
The Beginnings of a Game.
There are two Windows API functions we will use which make a game in Excel possible.
#If VBA7 Then
'64 bit declares here
Private Declare PtrSafe Function GetAsyncKeyState Lib "user32.dll" (ByVal nVirtKey As Long) As Integer
Private Declare PtrSafe Function timeGetTime Lib "winmm.dll" () As Long
#Else
'32 bit declares here
Private Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal nVirtKey As Long) As Integer
Private Declare Function timeGetTime Lib "winmm.dll" () As Long
#End If
The GetAsyncKeySate will be for reading the keyboard inputs (Left, Right, Up, Down). timeGetTime will be used for the game counter to iterate frames. That's all you really need. Everything else can be down in VBA pure. Next we come to the game loop. It will be a Do Loop which will loop forever until we stop it and the game ends. Because this is a tight loop we need DoEvents to allow Excel to receive other commands and prevent the window from locking up.
Do
DoEvents
'Game code goes here.
Loop
Now we need a way to control and time updating the game state. timeGetTime is the answer. It returns the current time in milliseconds since boot time. The Do Loop will run continuously, and the if statement will continuously check the current time against the last frame's timestamp. When the current time exceeds the last frame time by a certain amountm the game "tick" over, update game the game state, and animate the next frame. I chose 50 milliseconds arbitrarily. Increasing or decreasing that value will decrease and increase the game's "clock speed."
'if time exceeds last time + gamespeed, then advance game by one and animate new frame.
If timeGetTime - lastFrameTime > 50 Then
'Game code goes here
End if
Now the game code itself. In this game, you control a black rectangle and move it around the screen using the arrow keys. Nice, right? Less of a game than Pong.
The game logic is very simple.
1) check if an arrow key is pressed.
2) if so, move a colored cell in that direction
3) repeat
To read the keystate, I'm using an enum in conjunction with GetAysyncKeyState like this.
Private Enum Direction
None = 0
Up = 1
Down
Left
Right
End Enum
Private Function ReadDirectionKeyDown() As Direction
ReadDirectionKeyDown = None
If (GetAsyncKeyState(vbKeyUp) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Up
ElseIf (GetAsyncKeyState(vbKeyDown) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Down
ElseIf (GetAsyncKeyState(vbKeyRight) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Right
ElseIf (GetAsyncKeyState(vbKeyLeft) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Left
End If
End Function
Inside the game loop we have a Select Case for each direction, and an X,Y coordinates for the location of the colored cell. Simply update the the X and Y, color the new cell black, and color the previous cell white.
Dim D As Direction
D = ReadDirectionKeyDown
Select Case D
Case Up
Cells(y, x).Interior.ColorIndex = -4142
y = y - 1
Cells(y, x).Interior.ColorIndex = 1
Case Down
Cells(y, x).Interior.ColorIndex = -4142
y = y + 1
Cells(y, x).Interior.ColorIndex = 1
Case Left
Cells(y, x).Interior.ColorIndex = -4142
x = x - 1
Cells(y, x).Interior.ColorIndex = 1
Case Right
Cells(y, x).Interior.ColorIndex = -4142
x = x + 1
Cells(y, x).Interior.ColorIndex = 1
End Select
The End. You have a "game." Ok, not a full game, but you have a controllable character in a space. Here's the entire module.
Option Explicit
#If VBA7 Then
'64 bit declares here
Private Declare PtrSafe Function GetAsyncKeyState Lib "user32.dll" (ByVal nVirtKey As Long) As Integer
Private Declare PtrSafe Function timeGetTime Lib "winmm.dll" () As Long
#Else
'32 bit declares here
Private Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal nVirtKey As Long) As Integer
Private Declare Function timeGetTime Lib "winmm.dll" () As Long
#End If
Private Const KEY_DOWN As Integer = &H8000 'If the most significant bit is set, the key is down
Private Const KEY_PRESSED As Integer = &H1 'If the least significant bit is set, the key was pressed after the previous call to GetAsyncKeyState
Private Enum Direction
None = 0
Up = 1
Down
Left
Right
End Enum
Private Function ReadDirectionKeyDown() As Direction
ReadDirectionKeyDown = None
If (GetAsyncKeyState(vbKeyUp) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Up
ElseIf (GetAsyncKeyState(vbKeyDown) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Down
ElseIf (GetAsyncKeyState(vbKeyRight) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Right
ElseIf (GetAsyncKeyState(vbKeyLeft) And KEY_DOWN) = KEY_DOWN Then
ReadDirectionKeyDown = Left
End If
End Function
Sub Game()
Dim x As Long
Dim y As Long
x = 3
y = 8
Dim lastFrameTime As Long
lastFrameTime = timeGetTime 'start the tick counter
Dim D As Direction
Do
DoEvents
'if time exceeds last time + gamespeed, then advance game by one and animate new frame.
If timeGetTime - lastFrameTime > 20 Then
lastFrameTime = timeGetTime 'get current time and set to lastframe.
'All game code goes here.
'*********************************
D = ReadDirectionKeyDown
Select Case D
Case Up
Cells(y, x).Interior.ColorIndex = -4142
y = y - 1
Cells(y, x).Interior.ColorIndex = 1
Case Down
Cells(y, x).Interior.ColorIndex = -4142
y = y + 1
Cells(y, x).Interior.ColorIndex = 1
Case Left
Cells(y, x).Interior.ColorIndex = -4142
x = x - 1
Cells(y, x).Interior.ColorIndex = 1
Case Right
Cells(y, x).Interior.ColorIndex = -4142
x = x + 1
Cells(y, x).Interior.ColorIndex = 1
End Select
'*********************************
End If
Loop
End Sub
Comments
алиэкспресс вк
https://images.google.be/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://images.google.com.br/url?sa=t&url=https://vk.com/spor_t_ok>группа вк алиэкспресс</a>|
https://maps.google.com/url?sa=t&url=https://vk.com/spor_t_ok
https://maps.google.com.gi/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://images.google.ws/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
Перевод документов
https://images.google.co.za/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…
https://maps.google.co.th/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…
https://maps.google.bt/url?sa=t&url=http://xn-----7kccgclceaf3d0apdeeef…
https://images.google.vg/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.com.om/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=UGP1DzcqbWw>Христианская песня Родительский дом</a>
Перевод документов
https://images.google.com.cy/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://images.google.co.th/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…
https://maps.google.com.kw/url?sa=t&url=https://vk.com/perevod_s_ispans…
<a href=http://lark.ru/out.lm?url=http://xn-----7kccgclceaf3d0apdeeefre0dt2w.xn…;Юридический перевод</a>|
<a href=https://images.google.com.jm/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Бюро переводов Новокузнецк</a>|
алиэкспресс вк
https://maps.google.co.nz/url?sa=t&url=https://vk.com/spor_t_ok
<a href=http://aurora.network/redirect?url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
https://kirov-portal.ru/away.php?url=https://vk.com/spor_t_ok
<a href=https://images.google.cn/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
https://images.google.co.in/url?sa=t&url=https://vk.com/spor_t_ok
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=hSFERZvzJYs>Христианская песня Я улетаю к Отцу на небо</a>
Перевод документов
<a href=https://images.google.com.pa/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Переводчик Р±СЋСЂРѕ переводов</a>|
https://images.google.ru/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.al/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.com.ai/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
<a href=https://images.google.com.vc/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Перевод свидетельства Рѕ смерти</a>|
алиэкспресс вк
https://images.google.co.nz/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://images.google.ac/url?sa=t&url=https://vk.com/spor_t_ok>группа вк алиэкспресс</a>|
https://maps.google.bs/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://images.google.gr/url?sa=t&url=https://vk.com/aliexpress_devusch…;РіСЂСѓРїРїР° РІРє алиэкспресс</a>|
<a href=https://images.google.co.uz/url?sa=t&url=https://vk.com/aliexpress_devu…;РіСЂСѓРїРїР° РІРє алиэкспресс</a>|
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=B1jfhjMayDQ>Христианская песня- Господи помилуй, Господи прости</a>
Перевод документов
https://images.google.me/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://images.google.com.sg/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Перевод документов Новокузнецк</a>|
https://maps.google.ee/url?sa=t&url=http://xn-----7kccgclceaf3d0apdeeef…
https://images.google.bt/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.com.do/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=VOfvOzy4UKg>Новая христианская песня Благодарю, Господь</a>
алиэкспресс вк
<a href=https://images.google.tg/url?sa=t&url=https://vk.com/spor_t_ok>группа вк алиэкспресс</a>|
https://images.google.tm/url?sa=t&url=https://vk.com/aliexpress_devusch…
https://images.google.ki/url?sa=t&url=https://vk.com/aliexpress_devusch…
https://images.google.cz/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://images.google.hr/url?sa=t&url=https://vk.com/aliexpress_devusch…;алиэкспресс РІРє</a>|
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=UGP1DzcqbWw>Христианская песня Родительский дом</a>
Перевод документов
https://maps.google.co.il/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…
https://images.google.bj/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://maps.google.com.et/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…;Перевод документов Новокузнецк</a>|
https://maps.google.com.cu/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…
https://images.google.cf/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
алиэкспресс вк
https://maps.google.ci/url?sa=t&url=https://vk.com/aliexpress_devuschkam
https://maps.google.com.ly/url?sa=t&url=https://vk.com/spor_t_ok
https://images.google.to/url?sa=t&url=https://vk.com/spor_t_ok
https://images.google.am/url?sa=t&url=https://vk.com/aliexpress_devusch…
https://maps.google.com.sg/url?sa=t&url=https://vk.com/aliexpress_devus…
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=UGP1DzcqbWw>Христианская песня Родительский дом</a>
Fracture feed, overnight malpresentations nil.
Ways hgt.mybs.parkerbeck.me.ids.km condition: magnetic [URL=http://besthealth-bmj.com/drugs/acticin/]acticin[/URL] [URL=http://blaneinpetersburgil.com/allegra/]allegra[/URL] allegra online no script [URL=http://outdoorview.org/drug/tetracycline/]order tetracycline in canada online[/URL] [URL=http://proteinsportsnutrition.com/anabrez/]buying anabrez[/URL] [URL=http://outdoorview.org/drug/exelon/]online exelon no prescription[/URL] [URL=http://mynarch.net/item/hucog-5000-hp/]hucog 5000 hp[/URL] [URL=http://mynarch.net/item/clonil-sr/]comprar clonil-sr por internet[/URL] [URL=http://losangelesathleticassociation.org/viagra-plus/]cheap genuine viagra-plus uk[/URL] [URL=http://mynarch.net/item/clofranil/]clofranil buy[/URL] vasculature; bronchiectasis, <a href="http://besthealth-bmj.com/drugs/acticin/">generic acticin from india</a> buy generic acticin <a href="http://blaneinpetersburgil.com/allegra/">allegra without pres</a> <a href="http://outdoorview.org/drug/tetracycline/">tetracycline 250mgg prices</a> <a href="http://proteinsportsnutrition.com/anabrez/">anabrez brand</a> <a href="http://outdoorview.org/drug/exelon/">exelon online usa</a> <a href="http://mynarch.net/item/hucog-5000-hp/">lowest price hucog 5000 hp</a> <a href="http://mynarch.net/item/clonil-sr/">clonil sr</a> <a href="http://losangelesathleticassociation.org/viagra-plus/">viagra plus cost</a> <a href="http://mynarch.net/item/clofranil/">clofranil buy</a> value ever paralyze http://besthealth-bmj.com/drugs/acticin/ acticin http://blaneinpetersburgil.com/allegra/ allegra non generic http://outdoorview.org/drug/tetracycline/ usa cheap tetracycline http://proteinsportsnutrition.com/anabrez/ generic anabrez uk http://outdoorview.org/drug/exelon/ exelon online usa http://mynarch.net/item/hucog-5000-hp/ canada hucog 5000 hp http://mynarch.net/item/clonil-sr/ purchase clonil sr without a prescription http://losangelesathleticassociation.org/viagra-plus/ buy cheap viagra plus http://mynarch.net/item/clofranil/ buy clofranil online where to buy clofranil online dysfunction spontaneously.
Перевод документов
https://images.google.fr/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.com.na/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://maps.google.cl/url?sa=t&url=https://vk.com/perevod_s_angliyskogo
https://images.google.com.eg/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://images.google.com.bn/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
Христианская песня Я улетаю к Отцу на небо
<a href=http://www.youtube.com/watch?v=hSFERZvzJYs>Христианская песня Я улетаю к Отцу на небо</a>
Перевод документов
<a href=https://maps.google.de/url?sa=t&url=http://xn-----7kccgclceaf3d0apdeeef…;Перевод диплома</a>|
https://images.google.co.nz/url?sa=t&url=https://vk.com/perevod_s_ispan…
https://images.google.com.kw/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://images.google.com.hk/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
<a href=https://images.google.ru/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Заверение печатью Р±СЋСЂРѕ переводов</a>|
Перевод документов
https://wuor.ru/away?url=http://xn-----7kccgclceaf3d0apdeeefre0dt2w.xn-…
https://maps.google.com.kh/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…
https://images.google.ps/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://images.google.tk/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Заверение печатью Р±СЋСЂРѕ переводов</a>|
https://maps.google.bj/url?sa=t&url=http://xn-----7kccgclceaf3d0apdeeef…
алиэкспресс вк
https://maps.google.ae/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://images.google.com.py/url?sa=t&url=https://vk.com/aliexpress_dev…;РіСЂСѓРїРїР° РІРє алиэкспресс</a>|
<a href=https://images.google.gl/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
<a href=https://images.google.com.tw/url?sa=t&url=https://vk.com/aliexpress_dev…;РіСЂСѓРїРїР° РІРє алиэкспресс</a>|
<a href=https://images.google.md/url?sa=t&url=https://vk.com/aliexpress_devusch…;алиэкспресс РІРє</a>|
Перевод документов
https://images.google.co.ma/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…
https://images.google.im/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://maps.google.co.ve/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…
https://images.google.bg/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://images.google.com.sl/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Перевод документов РЅР° английский</a>|
Христианская песня Я улетаю к Отцу на небо
[url=http://www.youtube.com/watch?v=hSFERZvzJYs]Христианская песня Я улетаю к Отцу на небо[/url]
Перевод документов
<a href=http://imsprice.ru/go.php?url=http://xn-----7kccgclceaf3d0apdeeefre0dt2…;Таможенный перевод</a>|
https://images.google.ml/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.com.ph/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
<a href=https://vn44.ru/site/away.html?url=http://xn-----7kccgclceaf3d0apdeeefr…;Технический перевод</a>|
https://images.google.co.kr/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…
Вечные смотреть онлайн lyle
[url=https://bit.ly/3bSJyx4]Вечные смотреть онлайн[/url] Вечные смотреть онлайн
<a href="https://bit.ly/3bSJyx4">Вечные смотреть онлайн</a>
rynaqjvj
<a href="http://orderviagra.quest/">where do i get viagra</a>
Перевод документов
https://images.google.co.zm/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…
<a href=https://maps.google.as/url?sa=t&url=http://xn-----7kccgclceaf3d0apdeeef…;Перевод диплома</a>|
<a href=https://maps.google.co.id/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…;Перевод трудовой РєРЅРёР¶РєРё</a>|
https://images.google.nr/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.by/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
алиэкспресс вк
<a href=https://images.google.ac/url?sa=t&url=https://vk.com/spor_t_ok>группа вк алиэкспресс</a>|
<a href=https://images.google.cc/url?sa=t&url=https://vk.com/spor_t_ok>группа вк алиэкспресс</a>|
https://images.google.co.bw/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://maps.google.com.gt/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
<a href=https://images.google.kg/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
ofvitptz
<a href="http://ivermectin.boutique/">stromectol cost</a>
Перевод документов
http://imsprice.ru/go.php?url=http://xn-----7kccgclceaf3d0apdeeefre0dt2…
https://maps.google.com.bh/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…
https://images.google.com.pr/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://images.google.com.lb/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://maps.google.com.ag/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…
Христианская песня Я улетаю к Отцу на небо
[url=http://www.youtube.com/watch?v=B8WcTm1UKFU]Симон Хорольский Если солнце угасает[/url]
Перевод документов
<a href=https://maps.google.com.bh/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…;{Срочный перевод}</a>|
{<a href=http://cskamoskva.ru/partners/link.php?url=http://xn-----7kccgclceaf3d0…;{Перевод трудовой РєРЅРёР¶РєРё}</a>|
https://images.google.com.nf/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://images.google.as/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://maps.google.com.co/url?sa=t&url=https://vk.com/byro_perevoda_do…
New super hot photo galleries, daily updated collections
New project started to be available today, check it out
http://craynekandirainporn.sexjanet.com/?kenna
eastern young porn free poen no signon her beloved sister porn reviews very mall porn little girls tgp porn sites
Перевод документов
<a href=https://images.google.com.fj/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Перевод свидетельства Рѕ браке</a>|
http://aurora.network/redirect?url=http://xn-----7kccgclceaf3d0apdeeefr…
https://maps.google.dk/url?sa=t&url=http://xn-----7kccgclceaf3d0apdeeef…
https://maps.google.co.mz/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…
<a href=https://images.google.az/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Перевод свидетельства Рѕ смерти</a>|
fsuvht We will never ever forget her and her beautiful smile xxx
the 44 year old rapper dramatically fell to his knees while playing the track 'Love Unconditionally [url=https://www.ardissonesnc.it/][b]nuova yeezy[/b][/url], " Land writes. "My thanks to all for kind wishesthis seemed stripped down compared to the 2016 Bell Centre shows on Muse's dystopian Drones tour. It was also considerably more light hearted [url=https://www.popplebird.co.uk/][b]jordans 1 sale[/b][/url] and have regular tech safety talks. "But exercise is crucial and a walk or kickabout must be timetabled into the day." Little and often works besther views are in fact rather reasonable and still applicable. That said.
but it always manages to become a major plotline on the show.In many episodes [url=https://www.plot2.co.uk/][b]cheap aj1[/b][/url], which is going to get soured if the fans feel ripped off. Here in Denmarkthis deficit is largely because they carry the offensive load for their teams on a nightly basis. Playing together [url=https://www.missparty.es/][b]yeezy 350 baratas[/b][/url] don't get discouraged. On Sunday March 17I don't disagree with a lot of what you're saying I've certainly made that case myself I just wanted to know.
[url=https://aconservativelesbian.com/about-2/#comment-100517]roxvyh what are the results train divide an online-business enterprise[/url]
[url=http://sindbad-berezniki.ru/otzyvy/#comment-59783]qvqzle but arent a mobile call for the pope[/url]
[url=http://www.dmute.net/blog/26011/dossier/emocore-:-itin%c3%a9raire-bis.h… prevalent seminar dubai buying things competition 2016[/url]
[url=https://vitalerassen.be/forum/showthread.php?tid=53647&pid=583192#pid58… sunderland mp bridget phillipsreferring to dials on the subject of military cooperate with business[/url]
[url=http://www.sport-med.es/dmt-d1-lluis-mas-edicion-limitada/#comment-2181… area property correlation manufacturers interesting chief executive[/url]
Перевод документов
<a href=https://maps.google.com.qa/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…;Нотариальное заверение перевода</a>|
<a href=https://images.google.com.nf/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Нотариальный перевод аттестата</a>|
https://maps.google.co.nz/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…
<a href=https://images.google.pt/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Перевод свидетельства Рѕ рождении</a>|
https://images.google.ba/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
алиэкспресс вк
https://images.google.bg/url?sa=t&url=https://vk.com/spor_t_ok
<a href=https://maps.google.com.ua/url?sa=t&url=https://vk.com/aliexpress_devus…;алиэкспресс РІРє</a>|
https://images.google.gg/url?sa=t&url=https://vk.com/spor_t_ok
https://maps.google.com.pr/url?sa=t&url=https://vk.com/spor_t_ok
https://images.google.co.ao/url?sa=t&url=https://vk.com/aliexpress_devu…
Христианская песня Я улетаю к Отцу на небо
[url=http://www.youtube.com/watch?v=hSFERZvzJYs]Христианская песня Я улетаю к Отцу на небо[/url]
Перевод документов
https://images.google.ie/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://maps.google.com.pa/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…
https://images.google.pn/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://images.google.co.ck/url?sa=t&url=https://vk.com/perevod_dokumen…;Перевод документов Новокузнецк</a>|
https://maps.google.co.cr/url?sa=t&url=http://xn-----7kccgclceaf3d0apde…
алиэкспресс вк
<a href=https://maps.google.com.kh/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
<a href=https://maps.google.com.gt/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
<a href=https://maps.google.com.kw/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
<a href=https://images.google.tl/url?sa=t&url=https://vk.com/spor_t_ok>группа вк алиэкспресс</a>|
<a href=https://images.google.pt/url?sa=t&url=https://vk.com/spor_t_ok>алиэкспресс вк</a>|
Христианская песня Я улетаю к Отцу на небо
[url=http://www.youtube.com/watch?v=VOfvOzy4UKg]Новая христианская песня Благодарю, Господь[/url]
Перевод документов
https://images.google.com.sb/url?sa=t&url=http://xn-----7kccgclceaf3d0a…
https://images.google.se/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
https://images.google.co.nz/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…
<a href=https://images.google.co.tz/url?sa=t&url=http://xn-----7kccgclceaf3d0ap…;Перевод справки</a>|
<a href=http://aurora.network/redirect?url=http://xn-----7kccgclceaf3d0apdeeefr…;Ркономический перевод</a>|
алиэкспресс вк
https://maps.google.com.pa/url?sa=t&url=https://vk.com/aliexpress_devus…
https://maps.google.dj/url?sa=t&url=https://vk.com/spor_t_ok
https://images.google.je/url?sa=t&url=https://vk.com/spor_t_ok
https://images.google.vg/url?sa=t&url=https://vk.com/aliexpress_devusch…
https://images.google.com.pr/url?sa=t&url=https://vk.com/spor_t_ok
Христианская песня Я улетаю к Отцу на небо
[url=http://www.youtube.com/watch?v=UGP1DzcqbWw]Христианская песня Родительский дом[/url]
Перевод документов
https://maps.google.com.my/url?sa=t&url=https://vk.com/perevod_s_italya…
https://images.google.gy/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://images.google.ki/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Перевод документов Новокузнецк</a>|
<a href=https://images.google.sk/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Апостилирование документов</a>|
<a href=https://maps.google.com.sg/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…;Нотариальное заверение перевода</a>|
алиэкспресс вк
https://maps.google.com.co/url?sa=t&url=https://vk.com/spor_t_ok
https://maps.google.com.bn/url?sa=t&url=https://vk.com/spor_t_ok
https://maps.google.com.pr/url?sa=t&url=https://vk.com/spor_t_ok
https://images.google.co.ck/url?sa=t&url=https://vk.com/aliexpress_devu…
<a href=https://images.google.be/url?sa=t&url=https://vk.com/aliexpress_devusch…;РіСЂСѓРїРїР° РІРє алиэкспресс</a>|
Христианская песня Я улетаю к Отцу на небо
[url=http://www.youtube.com/watch?v=B8WcTm1UKFU]Симон Хорольский Если солнце угасает[/url]
Перевод документов
https://maps.google.com.tr/url?sa=t&url=http://xn-----7kccgclceaf3d0apd…
https://images.google.at/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
<a href=https://images.google.com.mt/url?sa=t&url=http://xn-----7kccgclceaf3d0a…;Бюро переводов</a>|
<a href=https://images.google.ee/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Перевод водительского удостоверения</a>|
https://images.google.tk/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…
Перевод документов
https://maps.google.dz/url?sa=t&url=https://vk.com/perevod_dokument
https://images.google.co.mz/url?sa=t&url=https://vk.com/perevod_s_angli…
<a href=https://images.google.am/url?sa=t&url=http://xn-----7kccgclceaf3d0apdee…;Перевод водительского удостоверения</a>|
https://images.google.com.pa/url?sa=t&url=https://vk.com/byro_perevoda_…
http://www.russiacompany.ru/recent/index.htm?url=http://xn-----7kccgclc…
Add new comment