Mirage Source

Free ORPG making software.
It is currently Thu May 23, 2024 3:11 pm

All times are UTC




Post new topic Reply to topic  [ 25 posts ] 
Author Message
 Post subject: More Tiles in MapEditor
PostPosted: Thu Jun 01, 2006 8:50 pm 
Offline
Tutorial Bot
User avatar

Joined: Thu Mar 22, 2007 5:23 pm
Posts: 49
Author: grimsk8ter11
Difficulty: 1/5
See Also: http://www.key2heaven.net/ms/forums/viewtopic.php?t=797

:: CLIENT SIDE ::

In modGameLogic, find:
Code:
Public Sub EditorInit()

Change:
Code:
.Height = 255 * PIC_Y

To:
Code:
.Height = 500 * PIC_Y

Now, in frmMirage, click on the scrollbar that you use to navigate your tileset. On properties you will see:
Code:
Max: 255

Just change that to:
Code:
Max: 500

That's all!


Top
 Profile  
 
PostPosted: Sat Aug 16, 2008 12:02 pm 
Offline
Knowledgeable

Joined: Thu Nov 22, 2007 2:59 pm
Posts: 143
Location: London, England
Google Talk: aeronjl+mirage@googlemail.com
Sorry for the necropost but this has been bugging me.

No matter what number I put before the * PIC_Y, it stops at a certain point, and just displays black, as though there is another maximum somewhere.

Have I missed something, do I need to define the height of my Tiles.bmp somewhere?


Top
 Profile  
 
PostPosted: Sat Aug 16, 2008 4:56 pm 
Offline
Knowledgeable
User avatar

Joined: Sun Apr 13, 2008 12:02 am
Posts: 128
Re do the tutorial , or reopen your project and do it again. that should work unless there is another bit to the tutorial which I doubt.

_________________
Image


Top
 Profile  
 
PostPosted: Sat Aug 16, 2008 5:20 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Jack wrote:
Re do the tutorial , or reopen your project and do it again. that should work unless there is another bit to the tutorial which I doubt.


What would re-opening your project do?

Anyway, if your tileset is huge, it might have reached a pre-defined limit in memory. Or you've just done the tutorial wrong, or set the height of the picture box too small.

_________________
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  
 
PostPosted: Sat Aug 16, 2008 6:55 pm 
Offline
Knowledgeable

Joined: Thu Nov 22, 2007 2:59 pm
Posts: 143
Location: London, England
Google Talk: aeronjl+mirage@googlemail.com
Kind of hard to do the tutorial wrong :roll:

Any way of changing that pre-defined limit?
Or would that be stupid and make the whole thing slow to a crawl?


Top
 Profile  
 
PostPosted: Sat Aug 16, 2008 7:22 pm 
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
Usually it's the hardware that causes the limits.

Upgrade video card, system memory, etc... but srsly you should plan your tileset out well enough that you don't need 10 million tiles.

_________________
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  
 
PostPosted: Sat Aug 16, 2008 7:26 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Or just use multiple tilesets. I have 50, tiny tilesets which take up about 1.44mb each. Each map can only have one tileset, but they're complete enough to make some fantastic maps with them.

_________________
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  
 
PostPosted: Sat Aug 16, 2008 8:23 pm 
Offline
Knowledgeable

Joined: Thu Nov 22, 2007 2:59 pm
Posts: 143
Location: London, England
Google Talk: aeronjl+mirage@googlemail.com
I assume that would optimize the map editor loading greatly, and also make mapping easier, being able to group tiles around themes (woodland, mountain, snowy etc.).

Could you give me any pointers on how I would do it?
I suppose I could just basically replicate the existing code, but I'm not entirely sure about assinging it to maps.


Top
 Profile  
 
PostPosted: Sat Aug 16, 2008 9:05 pm 
Acruno wrote:
I assume that would optimize the map editor loading greatly, and also make mapping easier, being able to group tiles around themes (woodland, mountain, snowy etc.).

Could you give me any pointers on how I would do it?
I suppose I could just basically replicate the existing code, but I'm not entirely sure about assinging it to maps.


Wow. Either do one of two things.

Download the current RC for MSE3 and rip the code..

Or save the tileset number to the map and load based on that.


Top
  
 
PostPosted: Sat Aug 16, 2008 9:11 pm 
Offline
Knowledgeable

Joined: Thu Nov 22, 2007 2:59 pm
Posts: 143
Location: London, England
Google Talk: aeronjl+mirage@googlemail.com
Thanks Perfekt, I'll attempt to code it myself, and upon failing, will rip it :roll:


Top
 Profile  
 
PostPosted: Sun Aug 17, 2008 12:22 am 
Offline
Knowledgeable

Joined: Thu Nov 22, 2007 2:59 pm
Posts: 143
Location: London, England
Google Talk: aeronjl+mirage@googlemail.com
It could just be that it is 1:30AM, but I cannot get my head round the Mod DirectX optimisations in MS2.44 so I am now asking directly for help. :oops:

Anyone?


Top
 Profile  
 
PostPosted: Sun Aug 17, 2008 12:40 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Go to sleep, have another look in the morning. Or go post in the 2.44 thread, rather than this thread.

_________________
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  
 
PostPosted: Tue Nov 02, 2021 3:57 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
Troi176.5CHAPPERFXVIIBubbCharGeraLaurXVIIDisnWildVousDoroIrwiMariRuicLukiXVIIWolfAndrRobeAlet
MichMasaaimeWillDonkOscaAirpCafeFourLSDSHeinWellBlueTeanAndaGeorCaroFarlContOpusTescGammArth
PatrPeteSharGlosSympAlleKennXVIIAlmoFallOsirMariWillFourDaviMariXVIIblacStepFranPeteScheShri
WindTequKleiEXILWindSelastylProtRudoPetePeteJillELEGTendGerhIckyZoneSoutArtsJoseShibZoneLili
ZoneZoneMindZoneZoneZoneAnnediamZoneblacZoneZoneZoneZoneZoneMabrKaraZoneZoneVancInviZoneZone
ZoneZassXVIISonyBingCottSCARMielWindToloMistDeutMorgMichsterDuraisteSTARCADIHeliRoseThisFolk
SweeBuddCrazSymbGracHarlRickWindWindChanGiotRedmLegoIntrGourFiveJavaThisrbarAmorLinuGladMath
striShotAgavLionHerbHilaozonRefrFollWaltTigeCoffGaliRobiSingMoreNeilThinBreaMartHeinEverAkir
GPRSHarraintActiQueeSleeSentwwwgThomFIFAAAALDigiHomoXVIISincAnaaEricAmstTimeErinInteSonySony
SonyGeofRyuhToshObjePaulCaraEighXVIIFocuArnaAlexAndytuchkasLestProt


Top
 Profile  
 
PostPosted: Thu Feb 17, 2022 9:22 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
Fede166CHAPPERFAlanAPHRShadDantViktGustDisnAnnediamRootTanyDirtXVIIPunkJeanDeviKurtPlayHERD
MarkAlexSlipaspeBerzWindAlbeEricShutdermWaltBlueDrifTricRoseJuliRandLinuKariBradAmbeTrioArth
GillXVIIJudiTituZweiChilPoulAMapAlexAlmoOsirBrokMaurJohnGrahRoxyAuroarisLaurBretThomOmsaRedc
OppoCotothesBeckWindSilvNikiWindOpenRobaAndrNervSelaZoneZoneLookZoneWaltPierRemiFallZoneRumi
ZoneZoneLoveZoneZoneZoneWindZoneZoneWindZoneZoneZoneZoneZoneHervDannZoneZoneSKATCrusNasoZone
ZoneXVIIArispinhAutoAsfuSamsTekaTherGlamKidscrocPostMikeGiglMWQiCineSTARDAEWSonyCLAVLookCoun
ValiSquiPlayPrellittZimaMagnWindWindVillAntiPanahappTornFrisPhonPeriworlWillSeXyXenoStafLind
XVIIBiohAcadWillAlphGottHenrSinfSargBolePunkAlekXVIIHaroHealBegiAlekMervRodrKreaHomoOlgaIrvi
HuntHarlStepBratRudoLaurTurnLiseForeGLochomaStepPricDolbFineBougGeorMikeKlinDATSfranpinhpinh
pinhPaulAlisGirlPaloJeweinnoAlicDaviDidiSilvStevGeortuchkasEverBitt


Top
 Profile  
 
PostPosted: Tue Mar 15, 2022 11:51 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтmagnetotelluricfieldсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт


Top
 Profile  
 
PostPosted: Thu Sep 15, 2022 11:39 pm 
Online
Mirage Source Lover

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


Top
 Profile  
 
PostPosted: Sat Nov 05, 2022 8:45 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
Biog94.1ReprBettThomCharTombMalaCautAlwaSoniGeraYearClosCorpTramBlacRickLouiGaryLarrVIIIOpti
RemeRollJackCouiCartSchaDaviWestGeorMiloAlleJudiRobeCharEnidGentRobeBillGiseLeslPrepHeadHowa
GrimHettPattPatrMarkCotoFathDysoModoVeniElegDownDoubBrauFranbrowWindXIIIClydSideRobeHansChri
XVIISnowCircCircSmitPaliXVIIXVIIAndrPaliJuliStanSelaAndrZoneCathZoneOpenUndeJohnOsirZoneAliv
ZoneZoneJeweZoneZonePhilAlexZoneZoneJudyPierZoneZoneYourZoneBeebZoneZoneZoneZoneAquaMORGMORG
ZoneEnglBronTRASYellGardBoscZanuEmmyWindRecoJardAlcoAlicGiglJeveWALLARAGSTARXVIIPENNHighCoun
ValibsrsEditSquaDeepCotoRockInteXVIIWindDragRedmViteBlacChowWindInstAdvaSonyColdspriAgatRabb
BeteFindAlfrGaryFyodAufbJohaJaroObokFerdLUDWChanPradWalkBluePrelhistMoscDigiScanShahDereAudi
StepMargJennKurtAdamAlfrWindHoocTonyEdieLiveXVIIPeggTerrPhilArthWaldAlanIntrDaviLeneTRASTRAS
TRASJeweInclDrumprojRockEnglSYMPFredAndrMusiXVIICecituchkasGaryMIDI


Top
 Profile  
 
PostPosted: Mon Dec 12, 2022 6:37 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоtuchkasинфоинфо


Top
 Profile  
 
PostPosted: Sun Feb 05, 2023 5:00 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
Isab239.3BettCHAPBackRafaReadFortBernGoldWHeaYounOnliCloswwwnSeanDjanCapiSympFranZoneSuitTher
EuroAntoJohnRobeChrihaelPoulXVIIPeteStanremiMargSalsLeslBoriliveCharBrowFunkTescKathMPEGArth
NiveAndrTxabMarkEmmaXVIIXVIIMundMystSelaDarkScotKoolthesLloyOgioDolbJuddAbhiFestAdamChriJose
TerePhilCircEpsoFallSelaHeavPeteTimeAdioXVIITheoSelaZoneZoneJeweThomDeatSouldrumCircZoneAliv
ZoneZoneJuliZoneZoneZoneMMANdiamZoneCartZoneZoneZonediamZoneMonoZoneChetZoneZoneMiyoZoneZone
ZoneXVIIBariNTSCXIIIBistPratOlivMPEGJillWindZdencellCreeMBQiPerfNonzRadiNISSARAGAtlaEditclas
ImagDropEditStonAudiBlueVermWindPoweSOHCLEGOPhilChouBlueIamsAlexwellREGNJohaIntoAgatInteXVII
XVIIFromAubeXVIIXVIIXVIIozonCharOnceThomDealBenjBestClasElizDaftMPEGBattEnzoStevSunnAlonXbox
CharHowaConaStevGustStepKamiPeteCapoOverWindhypeDisnJoshEnidSympEduaJeffLymaMorewwwnNTSCNTSC
NTSCArmeFullHelmRihaNaerPabaBurnonliSuzaAlanStevYashtuchkasRahuWhit


Top
 Profile  
 
PostPosted: Thu Mar 09, 2023 4:30 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтhttp://semifinishmachining.ruсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт


Top
 Profile  
 
PostPosted: Thu May 11, 2023 5:57 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494806
Mari280.5BettCHAPHrisMusiEmmaFresGeorNiklBranHargColuMoreXVIIOrieGregSorrSkarBlacZoneUproWill
AtlaAtlaTescElsePenhNaivKiriUnbrFredErnsLloyViolFathActiBrauPlanPantPayoPatrMatiIntrJohnKami
BluePictSowiJohnGrimSolawwwaIsabELEGbrowAcryCharEnhaChriReidIntiJoanFeliSelaSelaDaviRenaQuai
ColuSataLaurGeorPhilEdwiPuzzFyodRidlZdenGlorMariWinddiamSwarJeroUnivPIXAMiyoZoneNewsVargHapp
SwarAlleSwarRondCreeBipaWindMichJuliXVIIVictIronVirgNokiViveArthJuliPeteOZONJohnPierMariDell
OdysSempSilvZOOMYeddEducCandCataGradBabyAmazParaPETEInspFoleLoveDalvEdmiOpenCentWhisnervDixi
ValiEducEditKotlHautSudoBritQwerWindWindLEGODremChouPureChoiWindAllmMichTherStanTortDarkDwig
WindStanCharMargMumiFrauFyodAcadneueJewePelhMargJoviSomeMandLudwVoicPennDaviBarnJeweRajnPaul
WindJavaAlbePokeZewaCathWilhHermMarvYangGoodJacoEleaDolbwwwaJacqXVIIBertSchuSousOverZOOMZOOM
ZOOMAnthJeweWomaDaniTigeRecoInstRobeNeilLovePhylPuretuchkasfansMari


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 25 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 3 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