Syndicate Mod

The best and quickest support by a group of top-notch editing specialists, guaranteed!

Moderator: Forum Guards

Syndicate Mod

Postby Legion » Thu Apr 26, 07 10:54 pm

I've been working on this mod for a short time now. But i've come across a problem. I'm trying to make a map similar to that of dx where the menu screen is located. My problem is, I don't know how to make this map so that when you start the game, it opens up my other map and not the original dx maps. I would appreciate any help. Thanks in advance.
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby Kaiden » Thu Apr 26, 07 11:08 pm

Hopefully people will reply quickly, but post this in "Modifications" Next time hehehe.
------
Kaiden
Alpha
 
Posts: 7003
Joined: Wed Jan 18, 06 11:21 pm
Location: England

Postby Legion » Fri Apr 27, 07 6:25 am

I wasn't sure where to post it lol.. I'll keep that in mind the next time I need help with something.
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby Legion » Sat Apr 28, 07 6:17 am

wow, i'm amazed... I was under the impression that somebody would help me out with this... guess I was wrong. :cry:
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby clyzm » Sat Apr 28, 07 6:22 am

Sorry, I'm quite busy with my own mod atm.
Image
User avatar
clyzm
Forum Master God
 
Posts: 16023
Joined: Sun Nov 28, 04 2:48 am
Location: Chiraq

Postby Legion » Sun Apr 29, 07 2:46 am

~c[A]t~ wrote:Sorry, I'm quite busy with my own mod atm.

That's ok.. I was just wondering if anybody knew how I could make a custom menu screen and link it to a map I made.. I can't release my beta without knowing how to.. :cry:
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby Eçheløn » Sun Apr 29, 07 5:28 am

Well im stumped,but id like to see how to do this too.
Eçheløn
Poster
 
Posts: 193
Joined: Sun May 07, 06 4:55 pm
Location: Fiji

Re: Syndicate Mod

Postby Andrievskaya Veronika » Mon Apr 30, 07 3:47 am

GothicAngel wrote:I've been working on this mod for a short time now. But i've come across a problem. I'm trying to make a map similar to that of dx where the menu screen is located. My problem is, I don't know how to make this map so that when you start the game, it opens up my other map and not the original dx maps. I would appreciate any help. Thanks in advance.



More details, please.
User avatar
Andrievskaya Veronika
Poster
 
Posts: 164
Joined: Sat Sep 02, 06 7:35 am
Location: Database read error

Postby Legion » Wed May 09, 07 10:25 am

lol sorry for the long delay on the reply. If you ever played the Zodiac mod, there's a screen that has it's own menu. I been trying to figure out how to make one for my mod, but i'm not having much luck with it.
Image
Death is often silent... But I Prefer making it loud and bloody.
CHECK OUT MY RADIO STATION: http://eternalnights.listen2myradio.com/
http://www.erepublik.com/en/referrer/Venom637
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby Andrievskaya Veronika » Wed May 09, 07 12:17 pm

So you want your own Main Menu? Well i have ready to use code from my old mod :)

Or if you want to make your own background for Main Menu?
User avatar
Andrievskaya Veronika
Poster
 
Posts: 164
Joined: Sat Sep 02, 06 7:35 am
Location: Database read error

Postby Legion » Wed May 09, 07 9:14 pm

well, I have a background already in place. I just don't know how to make it into a menu lol. I kinda thought there was some coding involved somewhere. I'm just not smart enough to figure out how or where to do it.
Image
Death is often silent... But I Prefer making it loud and bloody.
CHECK OUT MY RADIO STATION: http://eternalnights.listen2myradio.com/
http://www.erepublik.com/en/referrer/Venom637
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby Andrievskaya Veronika » Thu May 10, 07 3:04 am

Okay, i see two solutions.

First: overwrite lot of code in your custom player class, if you using it. I never tried this but i know what to do.

Second: Use modified DeusEx.Ini file.

Menu background maps is Dx.DX and DxOnly.DX

You'll see Dx.DX as backgroung when game just loaded. You'll see DXONLY.DX when you disconnected, finished game, etc.


So, create uour own DX.DX and DXONLY.DX and put these mapt to separate folder. For example into MAPS\MY_SplashMaps\

Then you'll need to edit your DeusEx.Ini
Find this:

Code: Select all
[Core.System]
PurgeCacheDays=30
SavePath=.\Save
CachePath=.\Cache
CacheExt=.uxx
Paths=.\System\*.u
Paths=.\Maps\*.dx
Paths=.\Textures\*.utx
Paths=.\Sounds\*.uax
Paths=.\Music\*.umx
Suppress=DevLoad
Suppress=DevSave
Suppress=DevNetTraffic
Suppress=DevGarbage
Suppress=DevKill
Suppress=DevReplace
Suppress=DevSound
Suppress=DevCompile
Suppress=DevBind
Suppress=DevBsp



and add this:
Paths=.\MAPS\MY_SplashMaps\
before
Paths=.\Maps\*.dx

Here is example:

Code: Select all

[Core.System]
PurgeCacheDays=30
SavePath=.\Save
CachePath=.\Cache
CacheExt=.uxx
Paths=.\System\*.u
[b]Paths=..\MAPS\MY_SplashMaps\[/b]
Paths=.\Maps\*.dx
Paths=.\Textures\*.utx
Paths=.\Sounds\*.uax
Paths=.\Music\*.umx
Suppress=DevLoad
Suppress=DevSave
Suppress=DevNetTraffic
Suppress=DevGarbage
Suppress=DevKill
Suppress=DevReplace
Suppress=DevSound
Suppress=DevCompile
Suppress=DevBind
Suppress=DevBsp



Yes, and make copy of your modified DeusEx.ini and rename it to. for example to MY_DeusEx.ini
And then start the game with this modified My_deusex.ini.
Last edited by Andrievskaya Veronika on Thu May 10, 07 3:17 am, edited 1 time in total.
User avatar
Andrievskaya Veronika
Poster
 
Posts: 164
Joined: Sat Sep 02, 06 7:35 am
Location: Database read error

Postby Legion » Fri May 11, 07 4:29 am

sorry, i'm kinda dumb so that just confused me :cry:
Image
Death is often silent... But I Prefer making it loud and bloody.
CHECK OUT MY RADIO STATION: http://eternalnights.listen2myradio.com/
http://www.erepublik.com/en/referrer/Venom637
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm

Postby MainMan » Fri May 11, 07 6:46 am

Have you made a custom gametype and player class?
<center>ty m7
</center>
User avatar
MainMan
<i>Tru' Playa' Fer Defs</i>
 
Posts: 4655
Joined: Sun Jun 05, 05 7:38 am
Location: London, UK

Postby VodunLoas » Fri May 11, 07 7:09 am

I'm probably sure he just maps.
User avatar
VodunLoas
Alpha
 
Posts: 677
Joined: Thu Apr 22, 04 7:16 am

Postby Legion » Sat May 12, 07 5:52 am

Vodunlaos is kinda right. I've only mapped in the past; so I don't really know anything about making custom gametypes and stuff. :(
Image
Death is often silent... But I Prefer making it loud and bloody.
CHECK OUT MY RADIO STATION: http://eternalnights.listen2myradio.com/
http://www.erepublik.com/en/referrer/Venom637
User avatar
Legion
Regular
 
Posts: 452
Joined: Wed Jul 19, 06 6:00 pm


Return to Editing issues

Who is online

Users browsing this forum: No registered users and 50 guests