View Full Version : con file prob
There is no ROF adjustment for the weapons in the cons, there hardcode.
see the NAM and ww2gi games, they use alternate firing rates.
Eduke may aslo have some vartion aswell
Guest
07-21-2000, 12:05 AM
Where is the weapon speed setting in the con files? game.con? I found the strength and amount, but i can't find the speed.
cyborg
07-21-2000, 05:33 AM
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Corv:
Eduke may aslo have some vartion aswell<HR></BLOCKQUOTE>
Weapon Changes in Eduke (http://dukertcm.totalconversions.com/Cyborg/g1.html#w)
------------------
RTCM (http://dukertcm.totalconversions.com) - Cyborg (http://dukertcm.totalconversions.com/Cyborg)
-->Your fault<--
Guest
07-21-2000, 10:46 PM
Ok thanks! I was just wondering because I took the shotgun and gave it the look of a gun from "Shogo: Mobile Armor Division". It still reacts in the the same manor (fires the same and raised up when reloading), but it just looks cooler. I'm very pleased with it considering that was the first time I ever changed a guns look. Is there anyway to change the strength of the weapons, but not change it for the enemy with that gun? EX. I gave my shotgun a strength of 30 instead of 10, but the pigcops also have shotguns with 30. What else can I change about the guns other that strength, how much ammo I can carry, & how much ammo is in every pick-up? Is there a list of effects you can do using the con files on anybodies websites?
Ding Bat
07-22-2000, 01:44 AM
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>how much ammo I can carry, & how much ammo is in every pick-up? <HR></BLOCKQUOTE>
Near the very top of the user.con is MAXSHOTGUNAMOUNT 50 plus the other weapons, thats the amount you carry. Then down further, you'll find //enemy strenghts (hit point), just below that is SHOTGUNAMMOAMOUNT 10, that the amount you pick up.
Guest
07-22-2000, 11:44 AM
I'm sorry i wanted to know if there is any other changes to guns that i can make other than look, strength, how much ammo I can carry and how much is in each pick-up.
cyborg
07-22-2000, 11:44 AM
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by staind234:
Is there a list of effects you can do using the con files on anybodies websites?<HR></BLOCKQUOTE>
Try searching RTCM (http://dukertcm.totalconversions.com)
------------------
RTCM (http://dukertcm.totalconversions.com) - Cyborg (http://dukertcm.totalconversions.com/Cyborg)
-->Your fault<--
Guest
07-22-2000, 11:58 AM
I did, but whenever i click on a link it brings up a 404.
Usurper
07-22-2000, 04:02 PM
www.dukeworld.com/oglbt (http://www.dukeworld.com/oglbt)
read the con editing information doc there.
http://mapfaq.3dportal.com
another con faq
http://dukertcm.totalconversions.com/Cyborg
look in articles section for con stuff
http://dukertcm.totalconversions.com/W0rm
has some articles on ai and other con stuff
cyborg
07-22-2000, 08:27 PM
http://home.wanadoo.nl/slinkers/conhack/tutor.htm which I found at RTCM seems a good bet.
------------------
RTCM (http://dukertcm.totalconversions.com) - Cyborg (http://dukertcm.totalconversions.com/Cyborg)
-->Your fault<--
cyborg
07-23-2000, 12:04 AM
Specifically which links (refering page and link from that page), and what you searched for.
------------------
RTCM (http://dukertcm.totalconversions.com) - Cyborg (http://dukertcm.totalconversions.com/Cyborg)
-->Your fault<--
Guest
07-23-2000, 12:13 AM
well last time i was on the con links weren't working but they are now. art help still won't work though.
Guest
07-23-2000, 12:17 AM
if i wanted to add to the con files can I put it anywere? Say i wanted the zoom trick can i put that in at the end?
Guest
07-23-2000, 12:19 AM
on the con tricks where are the rest of the tricks? it only shows zoom!?
cyborg
07-23-2000, 12:26 AM
The art help link I don't know what's the supposed to link to seeing as corvin has helpfully left it as Document_. Use the editart guide instead.
Now, you said you're young so I will try not to patronise you too much but you might try to read THE WHOLE THING next time before asking answered questions:
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>
Atomic Duke Nukem CON tricks - Cyborg
Here is a collection of cool things you can CON hack from Duke Nukem Atomic. In this first draft I've only put one, as I've not had time to do much more than this.
Zoom
Zoom is really easy and simple to do, but pulling off a really good effect is harder. Here is the cheesy, rough effect with a twist...
/*
Zoom CON
By James Hollidge (Cyborg) 2000 (c)
*/
state zoom
ifpinventory GET_HEATS 0 { } else { addinventory GET_HEATS 1200 }
ifpinventory GET_HEATS 1199 { } else { addinventory GET_HEATS 1200 addinventory GET_HOLODUKE 1 break } // if the Nightvision is used zoom
ifpinventory GET_HOLODUKE 1 { } else { sizeat 4095 4095 addinventory GET_HOLODUKE 0 break }
ifpinventory GET_HOLODUKE 0 { } else { sizeat 42 36 break } // If the nigtvision is not used stop zooming
ends
All you need do now is find the start of the player code (actor APLAYER) and insert a 'state zoom' after that line. You can see the zoom in effect just by using the nightgoggles. The player, you might notice, becomes huge when the zoom is used: this is how the effect is achieved. Fixing the graphics basically involves spawning a new actor to display the correct graphics for the player and making the player invisible.
Try it, love it: zoom is cool. <HR></BLOCKQUOTE>
The bold answers where you put the code and why it is so lonely.
Oh and I did expect some rudementary knowledge of the CONS (being as this is a document for advanced effects and not a tutorial for beginners) but basically states must be on there own (yes you can put the written code at the end or in a new CON file) and all the main code is in the GAME.CON.
------------------
RTCM (http://dukertcm.totalconversions.com) - Cyborg (http://dukertcm.totalconversions.com/Cyborg)
-->Your fault<--
[This message has been edited by cyborg (edited 07-22-2000).]
Guest
07-23-2000, 12:35 AM
Sorry my fault. Is there any site that explains the con files really well. I don't understand the game.con. It just looks like a bunch of rubish to me, but I REALLY want to learn so I can make some effects.
vBulletin® v3.8.0 Beta 3, Copyright ©2000-2008, Jelsoft Enterprises Ltd.