Duke4.net Forums: Duke Plus - Duke4.net Forums

Jump to content

  • 57 Pages +
  • « First
  • 17
  • 18
  • 19
  • 20
  • 21
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Duke Plus  "feedback and general discussion of Duke Plus"

User is offline   Stabs 

#529

Can i get a little help writing this, iam not sure what i do but i think ive got a way to do it

every quoter i have has a matching picture, they share the same lotag, now if the picture quoter is pal 47 i want it to make its matching quote a pal 12, how would i write this up?

all my quote pics are just on hitag 10899 with pal variations.

gamevar i 0 0

include names.h
defstate quoters
for i allsprites ifactor QUOTER ifge .hitag 10899 & pal 47 & lotag is the same
make the sprite with a matching lotag pal 12
ends

This post has been edited by DanM: 23 January 2010 - 10:21 PM

0

User is online   Danukem 

  • Duke Plus Developer

#530

View PostDanM, on Jan 23 2010, 10:21 PM, said:

Can i get a little help writing this, iam not sure what i do but i think ive got a way to do it

every quoter i have has a matching picture, they share the same lotag, now if the picture quoter is pal 47 i want it to make its matching quote a pal 12, how would i write this up?

all my quote pics are just on hitag 10899 with pal variations.

gamevar i 0 0

include names.h
defstate quoters
for i allsprites ifactor QUOTER ifge .hitag 10899 & pal 47 & lotag is the same
make the sprite with a matching lotag pal 12
ends


I'm not familiar with mapster script, but based on looking at some example code this might work:

gamevar i 0 0
gamevar k 0 0

include names.h
defstate quoterpals
for i allsprites ifactor QUOTER ife .hitag 10899 ife .pal 47
{
	set k 0
	for k allsprites ifactor QUOTER ifn k i ife .lotag sprite[i].lotag
	set .pal 12
}

ends


I don't have time to test it now, but if it doesn't work I can probably fix it (or someone else can point out my errors).
0

User is offline   Stabs 

#531

thanks ill try that out

i may be able to slightly modify it if it dosnt work
0

User is offline   Stabs 

#532

brilliant ;)

and i added a whole bunch of other ones by changing 2 numbers, this script stuff is great, i wont have to think as much now
0

User is offline   williamjcm 

#533

View PostThe Commander, on Jan 15 2010, 07:00 AM, said:

I haven't really looked at how the cameras work, so I'm not sure if it does do this but the cameras could be good if they worked on tagged sectors like they seem to be in this video.

http://www.youtube.c...h?v=CCUqQoSYTDA


I've seen it 5 minutes ago and I've realized that Devil May Cry's cameras are acting the same way.

And the changing weapons in the character's hands is a great effect. DT, can this effect be implemented in DP ?
0

User is offline   Jblade 

#534

Quote

And the changing weapons in the character's hands is a great effect. DT, can this effect be implemented in DP ?

The problem has never been code and stuff, just art - Duke's weapon is built into his model and there's no support for submodels yet so somebody would have to add in every weapon to Duke's model for it to work, and that would require new animations as well.
0

User is offline   williamjcm 

#535

View PostJames, on Jan 24 2010, 03:19 PM, said:

The problem has never been code and stuff, just art - Duke's weapon is built into his model and there's no support for submodels yet so somebody would have to add in every weapon to Duke's model for it to work, and that would require new animations as well.


I just wanted to know about it. If I were good at programming, I would completely remake Eduke32 and add a mod manager based on Steam.

NOTE : I probably made some spelling or grammar errors. I'm French
0

User is offline   Lukaso 

#536

Hi again, I solved my request with Laser gun (new model change back to old). I only changed these parameters in dukeplus.def

Quote

// LASER PISTOL PICKUP (6145)
model "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/lasergun_pickup.md3" {
scale 3.0 shade 1
skin { pal 0 file "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/lasergun_1.jpg" }
frame { name "(from 3DSMax)" tile 6145 }
}

// HUD Laser Pistol (6146)
model "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/lasergun_1.md3" {
scale 1.9
skin { pal 0 surface 0 file "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/lasergun_1.jpg" }
skin { pal 0 surface 1 file "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/laser6146_pistol.png" }
// glow { file "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/laser6146_pistol_g.png" }
frame { name "idle" tile0 6146 tile1 6148 smoothduration 0.0 }
hud { tile0 6150 tile1 6151 xadd -0.15 yadd 1.36 zadd -0.68 angadd -37 }
// hud { tile0 6146 tile1 6148 xadd -0.36 yadd 1.32 zadd -0.66 angadd -20 }
hud { tile0 6146 tile1 6148 xadd 0.25 yadd 1.32 zadd -0.66 angadd -40 }
}

texture 6152 { pal 0 { file "DUKEPLUS_RESOURCES/GRAPHICS/WEAPONS/laserflash.png" nocompress nodownsize } }

to parameters from Duke Plus 2.06 but I have one problem now.

Gun works perfectly, pick up model too but if I shot, laserflash is in bad position. Look at second picture.

Posted Image Posted Image

What's wrong? What I need to change yet?

This post has been edited by Lukaso: 24 January 2010 - 01:23 PM

0

User is online   Danukem 

  • Duke Plus Developer

#537

View PostLukaso, on Jan 24 2010, 01:20 PM, said:

What's wrong? What I need to change yet?


What happened was I had to shift the laser to the right to match Gambini's model. The code for this is in DUKEPLUS.CON, in EVENT_EGS:


case FIRELASER

action FIRELASERACTION

ifspawnedby APLAYER
{
getactor[THISACTOR].extra temp
shiftvarl temp 1
setactor[THISACTOR].extra temp
setactor[THISACTOR].xoffset -32
}

If you remove or comment out the line which sets the xoffset, it should fire from the center again.
0

User is offline   Stabs 

#538

is there mapster script that can change the hitag of a group of sprites that are selected via right shift?

or another one that incrementally increase the lotag / hitag by 1 of a single sprite thats been pasted?

anyone feel free to chime in on this one

This post has been edited by DanM: 24 January 2010 - 10:09 PM

0

User is offline   Lukaso 

#539

View PostDeeperThought, on Jan 25 2010, 12:04 AM, said:

What happened was I had to shift the laser to the right to match Gambini's model. The code for this is in DUKEPLUS.CON, in EVENT_EGS:


case FIRELASER

action FIRELASERACTION

ifspawnedby APLAYER
{
getactor[THISACTOR].extra temp
shiftvarl temp 1
setactor[THISACTOR].extra temp
setactor[THISACTOR].xoffset -32
}

If you remove or comment out the line which sets the xoffset, it should fire from the center again.

Thank you for help, I deleted link "setactor[THISACTOR].xoffset -32" but laserflash is still on right position from weapon ;) is need anything else to change? In HUDPLUS.CON for example or other file?

This post has been edited by Lukaso: 25 January 2010 - 08:24 AM

0

User is online   Danukem 

  • Duke Plus Developer

#540

View PostLukaso, on Jan 25 2010, 08:23 AM, said:

Thank you for help, I deleted link "setactor[THISACTOR].xoffset -32" but laserflash is still on right position from weapon ;) is need anything else to change? In HUDPLUS.CON for example or other file?


Nope, it's just that one line. I commented it out myself to test and it made the laser centered again. I'm not sure how you managed to screw that up, but you did.
0

User is offline   Lukaso 

#541

View PostDeeperThought, on Jan 25 2010, 04:25 PM, said:

Nope, it's just that one line. I commented it out myself to test and it made the laser centered again. I'm not sure how you managed to screw that up, but you did.

Only that one line? I didnt comment it (I dont know how) I simple deleted it (in your previous post that line which you marked with bold font) and it sill doesnt work. I did it 3 times and nothing ;) laserflash still on right position. Can you send me please your modified DUKEPLUS.CON ? I will look whats wrong but I think nothing.

This post has been edited by Lukaso: 25 January 2010 - 09:03 AM

0

User is online   Danukem 

  • Duke Plus Developer

#542

Either you didn't save the change, or the copy of DUKEPLUS.CON that you edited was not the copy loaded by the game.
0

User is offline   Lukaso 

#543

View PostDeeperThought, on Jan 25 2010, 04:58 PM, said:

Either you didn't save the change, or the copy of DUKEPLUS.CON that you edited was not the copy loaded by the game.

It is saved, I see it, I edited it in wordpad and saved. In Duke game folder I have only one DUKEPLUS.CON, I checked it. ;)
0

User is online   Danukem 

  • Duke Plus Developer

#544

View PostLukaso, on Jan 25 2010, 09:02 AM, said:

It is saved, I see it, I edited it in wordpad and saved. In Duke game folder I have only one DUKEPLUS.CON, I checked it. ;)


This is the path of the copy that is used: DukePlus/dpcons/DUKEPLUS.CON
0

User is offline   Lukaso 

#545

View PostDeeperThought, on Jan 25 2010, 05:05 PM, said:

This is the path of the copy that is used: DukePlus/dpcons/DUKEPLUS.CON

Same.
Im not fool I understand to computers. ;)

Can you upload your modified DUKEPLUS.CON please? I will try it with it.

This post has been edited by Lukaso: 25 January 2010 - 09:08 AM

0

User is online   Danukem 

  • Duke Plus Developer

#546

Here.

Attached File(s)


0

User is offline   Lukaso 

#547

Ok I tested it but that file isnt modified. The line with xoffset is still here, through it I ran the game with it and still same.
Then I deleted that line from there and ran game again. Still same. Laserflash is still on right position. ;)
I dont know where can be mistake, Im doing everything right way.

This post has been edited by Lukaso: 25 January 2010 - 09:27 AM

0

User is offline   Usurper 

  • Hates Twitter

#548

Are you starting a new game, or loading a saved game?
0

User is offline   Lukaso 

#549

View PostUsurper, on Jan 25 2010, 06:17 PM, said:

Are you starting a new game, or loading a saved game?


Always started new.

I tried reinstall game too but still same...

This post has been edited by Lukaso: 25 January 2010 - 10:23 AM

0

User is offline   SFJake 

#550

Nice new version, I guess, here's what I have to say.

Thanks for keeping the shotgun alt-fire for the devastator. The BFG... I mean no offense really, but its horrible. It feels more like those joke weapon you toy around with just for kicks. It has no place at all in Duke, and it looks incredibly out of place. I don't mind here, I'm just not using it, but...

The holoduke spawning bots is overkill. Its the same as the BFG, its kinda fun, but the thing is, its completely overpowered. You can spawn FOUR from one holoduke, and they use too many strong weapons. You fixed laser pistol for balance, but if anything throws balance out of the windows, thats this. When the bots only used the shotgun, it felt balanced - that is if you could only spawn one and if you could deactivate him.

The lightning holoduke had a place and a reason to exist, same as shotgun devastator. It was all fitting nicely and all balanced, everything with a different purpose and situations you would want to use them. Thats not the case anymore.

Its nice that you work hard and all for this, and you added a -lot- of good stuff especially for mappers, but I'm personally sticking with 2.06 for now.


Some other things: Hi-Res blood. Why no option? It looks out of place. And I mean really. The new explosions have one - they are nice, by the way, unfitting though, but I can turn them on/off. I share the thought also that the new laser pistol model is really bad, and.. well, yes, again, it doesn't fit.
0

User is online   Danukem 

  • Duke Plus Developer

#551

View PostSFJake, on Jan 25 2010, 12:08 PM, said:

Thanks for keeping the shotgun alt-fire for the devastator. The BFG... I mean no offense really, but its horrible. It feels more like those joke weapon you toy around with just for kicks. It has no place at all in Duke, and it looks incredibly out of place. I don't mind here, I'm just not using it, but...



The BFG was made for an upcoming episode called The Imperium. In that episode, you will pick up parts of the weapon and it will gradually increase in power until it becomes the full weapon you used and don't like. So....for now just don't use it.

View PostSFJake, on Jan 25 2010, 12:08 PM, said:

The holoduke spawning bots is overkill. Its the same as the BFG, its kinda fun, but the thing is, its completely overpowered. You can spawn FOUR from one holoduke, and they use too many strong weapons. You fixed laser pistol for balance, but if anything throws balance out of the windows, thats this. When the bots only used the shotgun, it felt balanced - that is if you could only spawn one and if you could deactivate him.


All right, maybe four is overkill, but I can change that with one line of code. And by the way, the holoduke lightning is still in the game; you obviously didn't even bother trying to use the Holoduke with the bot option off.

View PostSFJake, on Jan 25 2010, 12:08 PM, said:

Some other things: Hi-Res blood. Why no option? It looks out of place.


The new hi-res blood that Chicken made looks very good, especially with the HRP. You can always remove it if you don't like it, simply by deleting dpblood1.png and dpblood2.png. Maybe at some point I will make it optional but it's not a high priority.

View PostSFJake, on Jan 25 2010, 12:08 PM, said:

I share the thought also that the new laser pistol model is really bad, and.. well, yes, again, it doesn't fit.


The new one looks good to me...but what was so good about the old one? It was just the HRP pistol with a slightly modified skin slapped on it.

This post has been edited by DeeperThought: 25 January 2010 - 05:09 PM

0

User is offline   Lukaso 

#552

So I give it up, I dont know why changing that laser effect doesnt work like you said. ;) :P
Nothing hard but I tried it for milion times and still same effect. Im going back to 2.06. :D

View PostDeeperThought, on Jan 25 2010, 09:31 PM, said:

The new one looks good to me...but what was so good about the old one? It was just the HRP pistol with a slightly modified skin slapped on it.

The old one was imho more "duke nukem". Nice simple modified model, centre positioning, it looks more 21th century, not most like from future but still alien look.
Same as model of minigun. Nice simple model which keeps "duke nukem" style up and -by the way- grenades are amazing.
I hope that it will sometimes become 3D hi-res model like the other models.

This post has been edited by Lukaso: 26 January 2010 - 01:01 AM

0

User is offline   SFJake 

#553

View PostDeeperThought, on Jan 25 2010, 04:31 PM, said:

All right, maybe four is overkill, but I can change that with one line of code. And by the way, the holoduke lightning is still in the game; you obviously didn't even bother trying to use the Holoduke with the bot option off.


Ouch. I apologize. I don't know why I didn't switch it off and check it out. I still think the overpowered is a matter of weapon first, though, not just numbers. Pistol/Shotgun/chaingun alone, it wouldn't just wipe out entire rooms by itself. Anyway, thanks a lot for keeping the lightning one in as well. I don't know how I missed that and not the devastator, and I'll be using that unless you ever limit the holobot's weapons.

View PostDeeperThought, on Jan 25 2010, 04:31 PM, said:

The new hi-res blood that Chicken made looks very good, especially with the HRP. You can always remove it if you don't like it, simply by deleting dpblood1.png and dpblood2.png. Maybe at some point I will make it optional but it's not a high priority.


I didn't know I could just remove it. Thats great. I don't mind/care for options if I can easily change it like that, I just wasn't aware of it. I guess thats all I needed to be using 2.07. I don't use HRP, hate it.

View PostDeeperThought, on Jan 25 2010, 04:31 PM, said:

The new one looks good to me...but what was so good about the old one? It was just the HRP pistol with a slightly modified skin slapped on it.

The old one isn't anything -good-, but it fits. The new one looks more like something out of Mars Attack. I mean, I know Duke Nukem is not supposed to be too serious and all, but it just.. doesn't fit. That green thing in front is the problem. Sure, its more detailed and better in that sense, but when I look at the troopers, I don't see or would think they use anything like that.


And just throwing this out here: The Heavy RPG. I like the change (more balanced), but thats not the point. Does anyone use the alt-fire? Its quite weak in general, and the spread of the small rockets doesn't beat just using the primary fire's splash damage, which is a lot more powerful anyway.

I'm saying this because its the only weapon with a classic reload every 2 ammo. I still sometimes try to reload it in front of a wall.. then I'm glad the alt fire is weak. My point is I think you should be able to manually reload it - but since alt-fire and reload is all one command, its a problem I guess.

EDIT: Is there any way to manually edit what weapons bot get? I searched in the files but couldn't find anything.

EDIT 2: Alright, I think the bots are not that overpowered actually. With health bars on, I noticed that the damage they do is.. actually pathetic. A rocket often won't kill a standard pigcop in one hit, they take like 50 chaingun hit to kill a trooper, etc.

This isn't normal, right? When I hit the same monster, they did quickly, but the bots do very low damage. Then again, fixing it would make them too strong.. unless there is a way to make them use only shotgun/chaingun, like I said. I think in general, monsters you control/mind blasted too have low damage and can take a lot more hits than they should.

This post has been edited by SFJake: 26 January 2010 - 01:47 PM

0

User is offline   Gambini 

#554

I´m noticing some contempt to my weapon model. Some refinements in its details (not so cartoony) and a good smooth shading on the skin would make it look a bit better maybe. I can try to remake it eventually.
0

#555

Don't get me wrong, the model itself is pretty nicely made and all, and for a more sci-fi environment, it'd fit in best. The thing is some of these guys [and I have to also admit I'm among them] just don't think it fits in with Duke's atmosphere.

The original model... yes it is basically a reskin of the pistol. However from what I notice, considering the laser pistol is dropped by Assault Captains, it should probably resemble their gun, and to me, their weapon does look more like the normal pistol than the newer model. o.o
0

User is offline   chicken 

  • Fashionable Modeler

#556

I like it, i also like that 50's-cartoon-Mars-attacks vibe.
0

User is offline   Lukaso 

#557

Finally I know whats the problem with laser pistol.
DeeperThought were right with parameter "xoffset -32". That parameter set shooting from right side of the screen but I wanted line which set position of laserflash. By deleting "xoffset -32" line shooting is ok but flash is still on the right side of screen. You were right but we didnt understand ourselves. :P
Maybe I wrong formulated my request. ;)

Can you tell me please which line (in DUKEPLUS.CON or other file) is needed to re-write for postitioning laserflash back into the middle of screen?
Im still searching but with no success.


EDIT:

YES !!!! I think I found it !!! :D

In HUDPLUS.CON needed to change parameters in "state displaylaserpistol":
"setvar digx 180" into 175
"setvar digy 240" into 245
and add parameter "subvar digx 24"

Finally it works fine now.

Anyway, thanks for helping me. :D

This post has been edited by Lukaso: 26 January 2010 - 07:42 AM

0

User is offline   SFJake 

#558

Alright, I think this could be a glitch, in a way:

Both bots and allied monsters are affected by the Damage Inflicted and probably Damage Received.

I think that shouldn't be the case. I always changed damage inflicted to something lower so that I don't get murdered too easily, but its a bit annoying that the resulting bots and monsters deal sad damage as a result.

I wondered why my captured monsters or the bots would deal so little damage, and that was the answer. They can also tank like crazy, but thats because other monsters do little damage to them too. Anything here could be fixed?
0

Share this topic:


  • 57 Pages +
  • « First
  • 17
  • 18
  • 19
  • 20
  • 21
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic


All copyrights and trademarks not owned by Voidpoint, LLC are the sole property of their respective owners. Play Ion Fury! ;) © Voidpoint, LLC

Enter your sign in name and password


Sign in options