Mirage Source

Free ORPG making software.
It is currently Wed May 01, 2024 11:16 pm

All times are UTC




Post new topic Reply to topic  [ 28 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Fullscreen
PostPosted: Fri Aug 25, 2006 1:41 pm 
Offline
Tutorial Bot
User avatar

Joined: Thu Mar 22, 2007 5:23 pm
Posts: 49
Author: Robin
Difficulty: Requires ability to understand.

This tutorial will allow user's to be able to choose from several options, including windowed, to make the game more suitable for them.

User configuration is really a good thing to add in.

For example, in Naruto Realm Beta, user's can choose which effects to add to text, they can choose font face, font size, resolution and can also enter optional details about themselves, for other people to see and also which way they would like to play music. eg. FMod or Mirage Default.

Now, because this is being made for a Vanilla MSE Build 1, and we are only adding in one option, I will add it into frmChars. I would suggest having an option menu for people when they open the client instead, though.

Now, add these items into frmChars:

Syn: Type | Name | Details

Combo | cmbFulllscreen | Enabled = false. List = 640x480, 800x600, 1024x768, 1280x1024. Type = Dropdown List.
Option | optFullscreen | Value = false
Option | optWindow | Value = true

Now we want it so that when people select Windowed, the combo box becomes disabled, and then enabled when Fullscreen is selected, so...

Add this code into frmChars:

Code:
Private Sub optFullscreen_Click()
cmbFullscreen.Enabled = True
End Sub

Private Sub optWindow_Click()
cmbFullscreen.Enabled = False
End Sub

Private Sub Form_Load()
cmbFullscreen.ListIndex = 0
End Sub


Goto modDirectX, delete:

Code:
' Indicate windows mode application
Call DD.SetCooperativeLevel(frmMirage.hWnd, DDSCL_NORMAL)


and replace with this:

Code:
    If frmChars.optFullscreen.Value = True Then
   
        Select Case frmChars.cmbFullscreen.ListIndex
            Case 0
                If Screen.Width <> 640 And Screen.Height <> 480 Then
                    Call DD.SetDisplayMode("640", "480", ColourDisplay, 0, DDSDM_DEFAULT)
                End If
            Case 1
                If Screen.Width <> 800 And Screen.Height <> 600 Then
                    Call DD.SetDisplayMode("800", "600", ColourDisplay, 0, DDSDM_DEFAULT)
                End If
            Case 2
                If Screen.Width <> 1024 And Screen.Height <> 768 Then
                    Call DD.SetDisplayMode("1024", "768", ColourDisplay, 0, DDSDM_DEFAULT)
                End If
            Case 3
                If Screen.Width <> 1280 And Screen.Height <> 1024 Then
                    Call DD.SetDisplayMode("1280", "768", ColourDisplay, 0, DDSDM_DEFAULT)
                End If
        End Select
       
        Call DD.SetCooperativeLevel(frmMirage.hWnd, DDSCL_EXCLUSIVE Or DDSCL_FULLSCREEN Or DDSCL_ALLOWMODEX)
       
    ElseIf frmChars.optWindow.Value = True Then
       
        ChangeBorderStyle frmMirage, 2
        frmMirage.Caption = GAME_NAME 'or w/e caption you want
        Call DD.SetCooperativeLevel(frmMirage.hWnd, DDSCL_NORMAL)
       
    End If


What this does is finds which options they selected, and set the display mod accordingly. Then, if it is fullscreen, the cooperative level in frmMirage is set to fullscreen mode(?). If not, then we add a border into frmMirage, re-do the caption, then set the cooperative level to that of just normal(?).

Either create a new module and put this in, or add to another module (I had it in modGeneral. Don't think that exists in Vanilla Mirage)

Code:
Public Sub ChangeBorderStyle(TheForm As Form, Style As Byte)
'code taken from GodSendDeaths post on www.miragesource.com/forums
Dim bToggleStyle As Boolean, bToggleExStyle As Boolean, cStyle As Byte
   
    'This makes sure the selected style is within acceptable range
    If Style > 5 Or Style < 0 Then Style = TheForm.BorderStyle
   
    cStyle = TheForm.BorderStyle
    TheForm.BorderStyle = Style
   
    'Checks the current BorderStyle and changes the variables to comply with selected style
    If Style = 0 Then
        'Don't know yet >_>...
        bToggleStyle = False
        bToggleExStyle = False
    ElseIf Style = 1 Then
        If cStyle = 2 Then
            bToggleStyle = True
        ElseIf cStyle = 3 Then
            bToggleStyle = False
        ElseIf cStyle = 4 Then
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = True
            bToggleExStyle = True
        End If
    ElseIf Style = 2 Then
        If cStyle = 1 Then
            bToggleStyle = True
            bToggleExStyle = False
        ElseIf cStyle = 3 Then
            bToggleStyle = True
        ElseIf cStyle = 4 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = False
            bToggleExStyle = True
        End If
    ElseIf Style = 3 Then
        If cStyle = 1 Then
            bToggleStyle = False
        ElseIf cStyle = 2 Then
            bToggleStyle = True
        ElseIf cStyle = 4 Then
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = True
            bToggleExStyle = True
        End If
    ElseIf Style = 4 Then
        If cStyle = 1 Then
            bToggleExStyle = True
        ElseIf cStyle = 2 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 3 Then
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = True
            bToggleExStyle = False
        End If
    Else
        If cStyle = 1 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 2 Then
            bToggleExStyle = True
        ElseIf cStyle = 3 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 4 Then
            bToggleStyle = True
            bToggleExStyle = False
        End If
    End If
   
    If bToggleStyle Then 'Toggles between Fixed and Sizeable
        Call SetWindowLong(TheForm.hWnd, GWL_STYLE, GetWindowLong(TheForm.hWnd, GWL_STYLE) Xor (WS_THICKFRAME Or WS_MINIMIZEBOX Or WS_MAXIMIZEBOX))
    End If
   
    If bToggleExStyle Then 'Toggles between ToolWindow and Regular Window
        Call SetWindowLong(TheForm.hWnd, GWL_EXSTYLE, GetWindowLong(TheForm.hWnd, GWL_EXSTYLE) Xor WS_EX_TOOLWINDOW)
    End If

    Call SetWindowPos(TheForm.hWnd, 0&, 0&, 0&, 0&, 0&, SWP_NOMOVE Or SWP_NOSIZE Or SWP_NOZORDER Or SWP_FRAMECHANGED)
End Sub


I found that in these forums, posted by GSD. I think it may be in Tutorial Request, or general or something. Anyway, someone asked for some code to change the borderstyle, and I took it.

Now add this sub somewhere. Again, I had it in modGeneral.

Code:
Public Sub Getwindowcolours()
    Dim hdesktopwnd As Long, hdccaps As Long
   
    'Get the desktop hwnd
    hdesktopwnd = GetDesktopWindow()
    'Get the DC
    hdccaps = GetDC(hdesktopwnd)
    'Get the number of colours from the DC
    ColourDisplay = GetDeviceCaps(hdccaps, 12)
    'Release the DC
    Call ReleaseDC(hdesktopwnd, hdccaps)
End Sub


This is a sub which get's the desktop hwnd, get's the DC, then, finds the number of colours. We then release the DC and now we have the desktop's colour setting's saved.

Add this into modGlobals:

Code:
' Fullscreen
Public ColourDisplay As ColourDepth


For the above code.

I had this code in modEnum, you can add anywhere.

Code:
Public Enum ColourDepth
    High32 = 32
    high24 = 24
    True16 = 16
End Enum


enumerate the colours.

Add these into modConstants

Code:
'for the change form border subroutine
Public Const SWP_NOSIZE = &H1
Public Const SWP_NOMOVE = &H2
Public Const SWP_NOZORDER = &H4
Public Const SWP_NOREDRAW = &H8
Public Const SWP_NOACTIVATE = &H10
Public Const SWP_FRAMECHANGED = &H20
Public Const SWP_SHOWWINDOW = &H40
Public Const SWP_HIDEWINDOW = &H80
Public Const SWP_NOCOPYBITS = &H100
Public Const SWP_NOOWNERZORDER = &H200
Public Const SWP_DRAWFRAME = SWP_FRAMECHANGED
Public Const SWP_NOREPOSITION = SWP_NOOWNERZORDER
Public Const HWND_TOP = 0
Public Const HWND_BOTTOM = 1
Public Const HWND_TOPMOST = -1
Public Const HWND_NOTOPMOST = -2
Public Const GWL_STYLE As Long = (-16&)
Public Const GWL_EXSTYLE As Long = (-20&)
Public Const WS_THICKFRAME As Long = &H40000
Public Const WS_MINIMIZEBOX As Long = &H20000
Public Const WS_MAXIMIZEBOX As Long = &H10000
Public Const WS_EX_TOOLWINDOW As Long = &H80&


Just some code which came with the border changer.

Add these into modDeclares:

Code:
Public Declare Function SetWindowPos Lib "user32" (ByVal hWnd&, ByVal hWndInsertAfter&, ByVal X&, ByVal Y&, ByVal CX&, ByVal CY&, ByVal wFlags&) As Long
Public Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hWnd&, ByVal nIndex&) As Long
Public Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd&, ByVal nIndex&, ByVal dwNewLong&) As Long
Public Declare Function GetDesktopWindow Lib "user32" () As Long
Public Declare Function GetDC Lib "user32" (ByVal hWnd As Long) As Long
Public Declare Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Long, ByVal nIndex As Long) As Long
Public Declare Function ReleaseDC Lib "user32" (ByVal hWnd As Long, ByVal hDC As Long) As Long


Again, came with the border change code.

And finally, goto frmMirage and change borderstyle to:

Code:
0 - None


Obviously, GSD or whoever didn't know how to set the border style to 0, so we have to change frmMirage from 0 to something else. In this case, 2 - Sizable.

You should now have working fullscreen support.

It does look very rubbish with the default maps, but I am adding in scrolling maps into my client, which work in all resolutions.

Players can choose which resolution they want. If you want, you can change it so people choose their own colour quality. I simply added some code which get's the desktop's colour quality and uses that, for compatability reasons.

If you are really lazy, or not too confident programming, you can just as easily change it to a set resolution.

This is probably not the best way to go about things, but it works fine on both Naruto Realm and my SPRPG, Wind's Whisper.

Oh, by the way. This will look pretty bad with the default style of GUI (eg. Having the map in a box with pictures around it) and I would suggest having a small GUI blted on screen, or simply non at all. With Inventory, Spells, Shops and the such blted on screen to make your game look more professional.

Have Fun_^

P.S. No other forms will be able to be loaded. If you add this in you must convert frmTrade, frmTraining and all other external forms to either picture boxes, or to Blted objects, like I did. Having them blted will allow for cool alphablending shizzle like in Naruto Realm Beta :)

~Kite


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 4:29 pm 
Offline
Newbie

Joined: Mon Aug 21, 2006 9:16 am
Posts: 2
How could i blit it and make it alphablend?
Help Please. Thanks ^-^


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 5:49 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
It takes a lot of coding, but what you want to do is get rid of all the picture boxes, list etc. and have all the game blted. Instead of having all the forms and stuff. Ugly :?

I can't really just tell you what to do. You have to do it for yourself.

But, instead of using BltFast, you can grab the DC's of the surface's and use BitBlt, which many people have created Alpha-Blending functions for. :)

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 8:14 pm 
Offline
Knowledgeable
User avatar

Joined: Tue May 30, 2006 1:42 am
Posts: 346
Location: Florida
Real quick question, is this all Client side or does some of it branch into Server Side cuz theres only a mod general on server side in MSE.

_________________
shut your manpleaser
http://www.kazmostech.com


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 8:44 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
It's all client side. If you read through it you would notice that I said you could put them anywhere, but I also said that I put them in modGeneral, which, as you said does not yet exist in MSE.

Of course... you could just add one in.

~Kite

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 12:23 am 
Offline
Knowledgeable
User avatar

Joined: Tue May 30, 2006 1:42 am
Posts: 346
Location: Florida
I did but I also noticed that you were correct, that you have to change the style of the thingy from having multiple forms. Currently trying to figure out how to change it (but of course I'm clueless on it... freaking bliting)

_________________
shut your manpleaser
http://www.kazmostech.com


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 12:34 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
As soon as you learn to blt, send packets and learn basic arithmetic... game creation is quite easy xD

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 12:39 am 
Offline
Knowledgeable
User avatar

Joined: Tue May 30, 2006 1:42 am
Posts: 346
Location: Florida
I'm learning the packets but the bliting is over my head for the time being.

_________________
shut your manpleaser
http://www.kazmostech.com


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 1:50 am 
Offline
Knowledgeable
User avatar

Joined: Mon Jul 24, 2006 2:04 pm
Posts: 339
Quote:
But, instead of using BltFast, you can grab the DC's of the surface's and use BitBlt, which many people have created Alpha-Blending functions for.


Watch out, though - using this is really going to boost up the system requirements of your game. Alphablending through DirectDraw is quite slow, and even slower through BitBlt.

_________________
NetGore Free Open Source MMORPG Maker


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 2:10 am 
Offline
Community Leader
User avatar

Joined: Sun May 28, 2006 10:29 pm
Posts: 1762
Location: Salt Lake City, UT, USA
Google Talk: Darunada@gmail.com
just blit the mask and then blit with boolean AND, I tink that's how you alphablend... maybe it's boolean OR.

_________________
I'm on Facebook! Google Plus LinkedIn My Youtube Channel Send me an email Call me with Skype Check me out on Bitbucket Yup, I'm an EVE Online player!
Why not try my app, ColorEye, on your Android devlce?
Do you like social gaming? Fight it out in Battle Juice!

I am a professional software developer in Salt Lake City, UT.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 5:29 am 
Offline
Knowledgeable

Joined: Wed May 31, 2006 8:00 pm
Posts: 142
Yep, if you want it simply, do it the way dave said, but be careful, it can get strange results with certain colours lol I tryed using it so I could have day/night (This was ages ago). Maybe i'm mistaken and it wasnt srcAnd


Actually, I made an app awhile ago to show how each type looks when blted over different backgrounds. You can get some strange effects when combining them :D

_________________
xFire:- funkynut


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 11:42 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Alphablending works fine if you add some options client side.

also, using it sparingly (for Inventory, maybe a little background to where you are typing) then it works wonders.

The options will be something like this:

High (full alphablending... slow(ish) on older systems)
Low (way dave said)
None (just goes back to bltFast)

This means people who can play HL2 with full setting's get some nice effects, and those people who struggle to run Runescape get some... well... they get to play the game.

~Kite

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 2:37 pm 
Offline
Newbie
User avatar

Joined: Tue Jul 18, 2006 6:23 pm
Posts: 11
Kite wrote:
As soon as you learn to blt, send packets and learn basic arithmetic... game creation is quite easy xD


How'd you learn how to blit?


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 3:22 pm 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
@up Messing with it


@kite:offtopic I need the updated version of Windwisper xd

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 7:11 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Heheh ok. Come on MSN then.

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Tue Nov 02, 2021 5:27 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
Nazw261.5CHAPCHAPKeviRavinumbApplJohnsselRetuIndiTescSummXVIIJuliWomaEricTefaCarlVienMichMeta
AnatStuaGladDaviTORXAndrDaviKurtPulsDoctTheyEthnmastSalaGilbXVIIHighKissPatrWelcPeteAlfrWyno
OreaZoneLuciXIIINighBouqFranTraiDrafSlanIronLangSnowDolbmailRogeBAFTFeliXVIIWestModeMPEGInto
FashWeidChriBrixMarkNikiNikiGameGiovFrieMcKiWindRobaSurediamWillThomBrotArtsLopeCircZoneArts
BaleZoneSoftZoneZoneZoneGeorASASZoneCiscZoneZoneZoneZoneZoneRobeAnniZoneZoneJameFranZoneZone
ZoneDecoJohnFluoMODAMoisStieCalvBookXboxRowlToysWildSilvHallWoodZENICastProlWindXVIIPharPopM
CleaRIVETrefMeetHellLEGOLittTeacTopPWindTranDeLoChouEscaRoyaNichRemiScreFantSonnPamePiotTile
XVIINickKeitRichFyodKitaMicrJeanTangCryiBeacNikoXVIINeroAlekWingGettCocoKeniTokiDonnFORECore
WindRobeMartUnitCarcTaruAlanFranChriWindYessSterVikrPaulAdelDeerDigiAnitJoacStanSwimFluoFluo
FluoInteTomaThomRequsongFirsTrojJohnRafaTrilSlavGrowtuchkasPaulGlee


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Thu Feb 17, 2022 10:53 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
cart225.2CHAPThisRobeBillBonuJohaCoolDolbHitsNikoClasSomeBrowXVIIOrphHappSolaJeweXVIIChriSign
XVIIhousKommJohnDAXXPaulShamRudyVergRETABeatNikoMikaSupeHansFranSoliFyodVeikGivewhilMichGior
PatrZoneFranBiatRemiPhilCollAltaLowlAdioWiimSideArktSupeCathReadWillFeliLinwKennProlLeonJewe
MeriSebaSaleGIUDStefCircOrlaWindJeroAttiBeraWormToscCreePetrSonyAlicPuppArtsXVIIFourZoneArts
shaMZoneWillZoneZoneZoneHenrChetZoneKennZoneZoneZoneZoneZonewestJayaZoneZoneVitaSideZoneZone
ZoneXVIIZINNSkylRETAElecUleaElecBookFighXVIIToloNeriConcThomWoodMistHalfHeliAbsoFoolThisElec
wwwaValiJunkChriMiliLegocasuWindWindWindPurdTANIhoupSupeRoyapresDylaReneMarqGoodKareTequScra
XVIITerrBarbXVIIGunsNapoXIIIWillArourideXXVIBoriCesaSpirHernDeceJourDisnZeppBradOrchJacqFutt
WindStevJeffMandEverKareAstrConcWindRobeFronJeweAriaRichrushHolgThisGinaHannSevenharSkylSkyl
SkylPhotPampByroBeatHenrForePameSchiolimStorEnglDavituchkasAstrMart


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Tue Mar 15, 2022 3:20 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоmagnetotelluricfield.ruинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоtuchkasинфоинфо


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Sun May 29, 2022 8:05 am 
Offline
Knowledgeable

Joined: Tue Apr 13, 2021 7:14 am
Posts: 258
Ray Ban Outlet
Ray Bans Outlet
Ray Bans
Rolex Watches
Adidas Yeezy
Adidas Yeezy
Yeezy Shoes
New Yeezys
Ray Bans
Ray Bans UK
Ray Ban Glasses
Ray Ban Sunglasses
Ray Ban Outlet
Ray Bans Outlet
Nike Outlet
Ray-Ban Sunglasses
Nike Factory
Yeezys
Ray Ban Sunglasses
Nike Outlet Online
Nike Outlet
Yeezy Shoes
Nike Trainers
Nike UK
Yeezy
Rolex
Rolex Watches
Pandora Jewelry
Pandora Charms
Pandora Jewelry
Travis Scott Jordan 1
Air Jordans
Jordan 11
Jordan 11
Jordans Shoes
Moncler Outlet
Off White
Yeezy 450
Yeezy 500
Nike Outlet
Jordans 4
Jordan Retro 4
Jordan Shoes
Yeezy
Yeezy 700
Yeezy Supply
Off White Shoes
NFL Jerseys
Fake Yeezys
Retro Jordans
Nike Air Jordan
Jordans Shoes
Yeezy 350 V2
Adidas Yeezy
Yeezy
Yeezy 700
Yeezy
Nike Outlet
Yeezy
Yeezy Foam Runner
Nike Outlet
Nike Outlet
Jordan AJ 1
UNC Jordan 1
Jordan 13
Jordan AJ 1
Yeezy Supply
Yeezy Zebra
Jordan 5
Jordan 1 Low
Air Jordans
Pandora Charms
Adidas UK
Adidas Yeezy
Yeezy 350
Jordan 1
YEEZY SUPPLY
Nike Shoes
Nike Outlet
Pandora Outlet
Air Jordan 4
Adidas Yeezy
Air Jordan 11
Air Jordan 1
Nike Jordans
Jordan 1s
Pandora UK
Nike Jordan 1
Jordan 1
Yeezy Slides
Nike Air VaporMax
Nike Vapormax Flyknit
Air Jordan 1 Mid
Adidas yeezy
Yeezy 350
Nike Shoes
Nike Outlet
Yeezy
NFL Shop Official Online Store
Nike UK
Yeezy
Yeezy 350

_________________
https://www.pandoras-jewelry.com/ Pandora Jewelry
https://www.pandoraoutlet.org/ Pandora Outlet
https://www.jordanshoess.com/ Jordan Shoes
https://www.air-jordan4.com/ Air Jordan 4
https://www.charms-pandora.com/ Pandora Charms


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Fri Sep 16, 2022 1:13 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
Cora172.2BettWhenSmasMelaJameJamedoesCarmArthPhilMickOverDickCOUPTescDekoalteHardSizeKathWill
PromClifSpikMariJohnTricChriWindANSIChriJameAmerJumpKamiFromalteBackIronXVIIAtlaIntrAndrPatr
NormDonaHeroGillPiecWillPixaDaniXVIISabrEvgeRadhJazzPelhRoseThomXVIIFELIFredFeelYongDmitVain
ArktGiocMariPeteReveHannSelaDianEdwaXboxAndrMaxiProsUberRITZLudwMariquotSwarZoneBrutZoneSwar
diamEGSiNBRDMariZoneZoneBlueZoneZoneGilldiamZoneZoneZoneMiyoXVIIJaroZoneZoneTomTJuliZoneCrai
ZoneSuprXVIIHarmBSCoKronSamsCataBookCHARXVIIWindBadiNighDaliLineFlipMatiPionWindVaniContIris
CleaZweiWinxMainSuprStayAutoWindWindWindFinePhilhappChloAdvaMichColuInteCitiTrevKarlIainTime
PossRichOZONAcadLangJameWritEmilWailVIIIXVIIYevgRideHeavRealPyotBonutimeCeciInteHiroPaulSony
RobeEnjoJohnYorkPhilReelinsiWindFionLibeMichJustLouiUnitMichAnimWindRudoPeteKellNASAHarmHarm
HarmSuedHaimBarrSupeClivSweeOrthEuryRobeCambMichUnchtuchkasNeroSymp


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Sat Nov 05, 2022 10:40 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
saga137.7DEFIBettWhatJeweBlacHenrZhanBendCarsMcBaCanoMineFiskByroXVIIXVIIGeorMorlRichComePrem
WWWRMoulStudDaviDeepCarlJasoSmokPatrLemoSidnRobiXVIIMatiAlwaFlemXVIIAlexStevPhilTescPalmLion
ByzaIherRossRandCeciRagaArchJameMystMODOCircVashAlexpinkAltaSelaMadhblacTetsPaulBradGoodAbov
PushChanSelaDarkAlwyElsySelaMasaGuitMacbDonaJohnTraiAshiZoneAstrZoneHaroDaweChilPushZoneLiPo
ZoneZoneLongZoneZoneGirlOverZoneZoneRighZoneZoneZoneKarlZoneLeonDympZoneZoneBoleStepZoneZone
ZoneEcceAidaTRASMehuHarvGoreElecDeboCabrAndyMercArmoOlmeDuraLoopLawrMitsCHERLanzUldrThorCoun
UnisVentBeadProSCottPacoGalawwwcwwwnPoweCrayPhilBrauKyliChoiGottEsseJeweINTEShutHeadCharDist
VirgElitFeueStanVisuXVIIEmilBookComeTheoToniMurrBaftDisnComiHardMcDoJoseChanGiusMarvcybeFord
PleaSallVickRossWMRBEloiWindRaymXVIIMichWillColoMobiRobeKokoSecrNapoLassDoreCoulTimoTRASTRAS
TRASHolyNairTakkJeweMPEGIntrGeorCustJohnAlfrPaulwwwntuchkasBossBlac


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Mon Dec 12, 2022 9:18 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
http://audiobookkeeper.ruhttp://cottagenet.ruhttp://eyesvision.ruhttp://eyesvisions.comhttp://factoringfee.ruhttp://filmzones.ruhttp://gadwall.ruhttp://gaffertape.ruhttp://gageboard.ruhttp://gagrule.ruhttp://gallduct.ruhttp://galvanometric.ruhttp://gangforeman.ruhttp://gangwayplatform.ruhttp://garbagechute.ruhttp://gardeningleave.ruhttp://gascautery.ruhttp://gashbucket.ruhttp://gasreturn.ruhttp://gatedsweep.ruhttp://gaugemodel.ruhttp://gaussianfilter.ruhttp://gearpitchdiameter.ru
http://geartreating.ruhttp://generalizedanalysis.ruhttp://generalprovisions.ruhttp://geophysicalprobe.ruhttp://geriatricnurse.ruhttp://getintoaflap.ruhttp://getthebounce.ruhttp://habeascorpus.ruhttp://habituate.ruhttp://hackedbolt.ruhttp://hackworker.ruhttp://hadronicannihilation.ruhttp://haemagglutinin.ruhttp://hailsquall.ruhttp://hairysphere.ruhttp://halforderfringe.ruhttp://halfsiblings.ruhttp://hallofresidence.ruhttp://haltstate.ruhttp://handcoding.ruhttp://handportedhead.ruhttp://handradar.ruhttp://handsfreetelephone.ru
http://hangonpart.ruhttp://haphazardwinding.ruhttp://hardalloyteeth.ruhttp://hardasiron.ruhttp://hardenedconcrete.ruhttp://harmonicinteraction.ruhttp://hartlaubgoose.ruhttp://hatchholddown.ruhttp://haveafinetime.ruhttp://hazardousatmosphere.ruhttp://headregulator.ruhttp://heartofgold.ruhttp://heatageingresistance.ruhttp://heatinggas.ruhttp://heavydutymetalcutting.ruhttp://jacketedwall.ruhttp://japanesecedar.ruhttp://jibtypecrane.ruhttp://jobabandonment.ruhttp://jobstress.ruhttp://jogformation.ruhttp://jointcapsule.ruhttp://jointsealingmaterial.ru
http://journallubricator.ruhttp://juicecatcher.ruhttp://junctionofchannels.ruhttp://justiciablehomicide.ruhttp://juxtapositiontwin.ruhttp://kaposidisease.ruhttp://keepagoodoffing.ruhttp://keepsmthinhand.ruhttp://kentishglory.ruhttp://kerbweight.ruhttp://kerrrotation.ruhttp://keymanassurance.ruhttp://keyserum.ruhttp://kickplate.ruhttp://killthefattedcalf.ruhttp://kilowattsecond.ruhttp://kingweakfish.ruhttp://kinozones.ruhttp://kleinbottle.ruhttp://kneejoint.ruhttp://knifesethouse.ruhttp://knockonatom.ruhttp://knowledgestate.ru
http://kondoferromagnet.ruhttp://labeledgraph.ruhttp://laborracket.ruhttp://labourearnings.ruhttp://labourleasing.ruhttp://laburnumtree.ruhttp://lacingcourse.ruhttp://lacrimalpoint.ruhttp://lactogenicfactor.ruhttp://lacunarycoefficient.ruhttp://ladletreatediron.ruhttp://laggingload.ruhttp://laissezaller.ruhttp://lambdatransition.ruhttp://laminatedmaterial.ruhttp://lammasshoot.ruhttp://lamphouse.ruhttp://lancecorporal.ruhttp://lancingdie.ruhttp://landingdoor.ruhttp://landmarksensor.ruhttp://landreform.ruhttp://landuseratio.ru
http://languagelaboratory.ruhttp://largeheart.ruhttp://lasercalibration.ruhttp://laserlens.ruhttp://laserpulse.ruhttp://laterevent.ruhttp://latrinesergeant.ruhttp://layabout.ruhttp://leadcoating.ruhttp://leadingfirm.ruhttp://learningcurve.ruhttp://leaveword.ruhttp://machinesensible.ruhttp://magneticequator.ruhttp://magnetotelluricfield.ruhttp://mailinghouse.ruhttp://majorconcern.ruhttp://mammasdarling.ruhttp://managerialstaff.ruhttp://manipulatinghand.ruhttp://manualchoke.ruhttp://medinfobooks.ruhttp://mp3lists.ru
http://nameresolution.ruhttp://naphtheneseries.ruhttp://narrowmouthed.ruhttp://nationalcensus.ruhttp://naturalfunctor.ruhttp://navelseed.ruhttp://neatplaster.ruhttp://necroticcaries.ruhttp://negativefibration.ruhttp://neighbouringrights.ruhttp://objectmodule.ruhttp://observationballoon.ruhttp://obstructivepatent.ruhttp://oceanmining.ruhttp://octupolephonon.ruhttp://offlinesystem.ruhttp://offsetholder.ruhttp://olibanumresinoid.ruhttp://onesticket.ruhttp://packedspheres.ruhttp://pagingterminal.ruhttp://palatinebones.ruhttp://palmberry.ru
http://papercoating.ruhttp://paraconvexgroup.ruhttp://parasolmonoplane.ruhttp://parkingbrake.ruhttp://partfamily.ruhttp://partialmajorant.ruhttp://quadrupleworm.ruhttp://qualitybooster.ruhttp://quasimoney.ruhttp://quenchedspark.ruhttp://quodrecuperet.ruhttp://rabbetledge.ruhttp://radialchaser.ruhttp://radiationestimator.ruhttp://railwaybridge.ruhttp://randomcoloration.ruhttp://rapidgrowth.ruhttp://rattlesnakemaster.ruhttp://reachthroughregion.ruhttp://readingmagnifier.ruhttp://rearchain.ruhttp://recessioncone.ruhttp://recordedassignment.ru
http://rectifiersubstation.ruhttp://redemptionvalue.ruhttp://reducingflange.ruhttp://referenceantigen.ruhttp://regeneratedprotein.ruhttp://reinvestmentplan.ruhttp://safedrilling.ruhttp://sagprofile.ruhttp://salestypelease.ruhttp://samplinginterval.ruhttp://satellitehydrology.ruhttp://scarcecommodity.ruhttp://scrapermat.ruhttp://screwingunit.ruhttp://seawaterpump.ruhttp://secondaryblock.ruhttp://secularclergy.ruhttp://seismicefficiency.ruhttp://selectivediffuser.ruhttp://semiasphalticflux.ruhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ru
http://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.ruhttp://taskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruhttp://temperateclimate.ruhttp://temperedmeasure.ruhttp://tenementbuilding.rutuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Sun Feb 05, 2023 6:29 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
OFFI287.3BettThisLouiAlbeMariStanVikrAlexPresFronSeveMoreJameWishDeepMoreStouXIIIZoneGrunBruc
CourAlexJeweJackEnigWindRobeAudiMargPureHeinGrooMagiChriPeerWillInvoWindRoalPersLincPeteIncl
AccaMemoAstrNatiGameLineWestXVIIHubbEnjoPhilDaviCotoCariMariQuenFeveGeorTroyWillFranJaneOuve
RomaJoliNikiElwoDeboNikiMODOMichdowsXVIIHoweLuulthesScreZoneKastMariNASAStepToccLakaZoneLiPo
ZoneZoneFeelZoneZoneZoneRitaZoneZoneMaymZoneZoneZoneZoneZoneTetsVincZoneZoneJohnDisnZoneZone
ZoneInteSchaLighPalaCandTekaMielHighMarySafeGillAdriWWQiAdriYPenMistBeflPROTARAGLatvCeciOrat
AltrRocoEditHarrRighLiPoDungWindTreyHansThisCisoViteCafePlanAmonLewiEaglPhilAmorRockAggrBody
domoSupeXVIIXVIICorbXVIIThorEdmothraLivePiroLeonManmBaccHealSoftVidaeastInteFedEMariMichFill
AlliTurbFranStevVisuBenjAdriOgilNickKerrDidiWhatDarrSonaSimsBallCarlHonoMichMiraMaurLighLigh
LighLineMalmFounGeneWilhDaviChryMetaMambPatrJorgMorntuchkasXVIIHalo


Top
 Profile  
 
 Post subject: Re: Fullscreen
PostPosted: Thu May 11, 2023 6:41 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494653
unna319.5MONTCHAPDreaallaJameGeorGeraMPEGCameAtomFunnUnitOscaOrieAdamNewsDannCanbZoneDaniArth
DISCTescClueBlacOralStVaColgetslJameYoghErnsBreeGeesCreoJohnBlenCleaKariAntoLeviHenrLawrBene
TeanVideEvelCottPushDAIWGorkSongBlaublacDisnGiulCollElfrTestValeStudNikiNikiNikiChouConcJesu
LaurPeacEntrNiveJohnJeanEmilRachLafaWindyeunProsHorrgranZoneBernGlenSoutZoneHappRogeSCRIZone
diamAlandiamMiyoHenrGustXVIISergJohaGonnOscaSeanCafeMitaBryaMariMartClivChriWindBrucXVIIBook
OpenLipsWindTRASFeelAgneBoscMakoBookOnceBookJardPariRuyaInfaBestESTASQuiTripLaurVIIIBeguCont
BettWindRussVoicMagiWaltWindwwwnFinaWindZanzBoscChouAntoPuriMaleAgatBoulMankMoreCordXVIIVoce
LukiJameAuguPrinGarrErneHenrLuthXVIIMaesAdamRobeWildGeldwwwmPianGettSkelBritJeweBillLaurCeci
DrivHTMLBrabEltoStanBirtMidnRatiRobeFranaverFerrJohnStagFranVIIIEricRowlKateJennAlanTRASTRAS
TRASEsteIntrBronBeteJohnRealSteaRobeShinLifeAndrTulituchkasYorkRoll


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 28 posts ]  Go to page 1, 2  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 12 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group