
[OFF] taking my questions. "here I post my questions to my dear friends. (all about CON scripting)"
#1 Posted 10 November 2011 - 02:06 AM
My name is Daniel. After bothering my partner Daniel (DeeperThought) <- saying to me all the time to use this forum, I finally decided to use it.
By the way, I would like to thank you Deep, you helped me a lot, and you was a very good friend to me, and still is!
Now, focus in the point.
My first question is:
I creat a actor, a simple actor, and in his code I always try to make this: when the player comes close (about 4096 units) get its XYZ position of the actor, and set the XYZ position of the camera (like that flying camera that records scenes only when you are recording a demo)
but, I'm still failing.
HOW I FIX THIS?
This post has been edited by Dk2: 29 July 2012 - 12:38 PM
#2 Posted 10 November 2011 - 02:31 AM
#3 Posted 10 November 2011 - 02:40 AM
#4 Posted 10 November 2011 - 02:44 AM
but I remember a piece of code:
gamevar XVAR 0 1 gamevar YVAR 0 1 gamevar ZVAR 0 1 actor CAMERACHANGER 0 0 ifpdistl 4096 { getactor[THISACTOR].x XVAR setvar camerax XVAR getactor[THISACTOR].y YVAR setvar camerax YVAR getactor[THISACTOR].z ZVAR setvar camerax ZVAR } else { nullop }
is more or less something like this, not totally remember the code, I think this example isn't very much logic
This post has been edited by Dk2: 10 November 2011 - 02:47 AM
#5 Posted 10 November 2011 - 02:47 AM
#6 Posted 10 November 2011 - 03:02 AM
onevent EVENT_DISPLAYROOMS ifvarn camerasprite -1 { getactor[camerasprite].x camerax getactor[camerasprite].y cameray getactor[camerasprite].z cameraz getactor[camerasprite].ang cameraang getactor[camerasprite].extra camerahoriz getactor[camerasprite].sectnum camerasect } endevent
instead of "camerasprite" I could use another actor?
I understand a piece of the code, but nothing is being used as the trigger of this action.
the camera needs to be styled "resident evil"
surely I could not use codes that use the argument that "if" the player is in the same sector of the actor, because the player can be seem by the actor in others sectors.
because of that I used "ifpdistl"
EDIT: ifvarn is a trigger ¬¬ how I not figured it out? =P
This post has been edited by Dk2: 10 November 2011 - 03:08 AM
#7 Posted 10 November 2011 - 03:21 AM
Dk2, on 10 November 2011 - 03:02 AM, said:
I understand a piece of the code, but nothing is being used as the trigger of this action.
You've already created your "trigger" with the CAMERACHANGER actor, you just need to flip some of the variables around, and create another var to let the game know that the player is within viewing distance of the camera actor. Since the XVAR (etc.) variables are perplayer, just change the actor's code to this...
gamevar XVAR 0 1 gamevar YVAR 0 1 gamevar ZVAR 0 1 gamevar CANSEE 0 0 // new var actor CAMERACHANGER 0 0 ifpdistl 4096 { setvar CANSEE 1 getactor[THISACTOR].x XVAR getactor[THISACTOR].y YVAR getactor[THISACTOR].z ZVAR } else { setvar CANSEE 0 nullop }
then jump to EVENT_DISPLAYROOMS...
onevent EVENT_DISPLAYROOMS ifvare CANSEE 1 { setvarvar camerax XVAR setvarvar cameray YVAR setvarvar cameraz ZVAR } endevent
...of course, there's all kinds of stuff with this code that's still messed up (you're not taking the camera's horiz value into consideration, for starters), but this'll produce the basic effect you're looking for. And then there's this...
Dk2, on 10 November 2011 - 03:02 AM, said:
because of that I used "ifpdistl"
What you stated is the exact reason using distance checks gets really, really messy the more the cameras are used. What if the player's within distance of two, or even more, different cameras? There's no workaround you can code in at that point that'll make sure the right camera's being used. What I did was create two different actors...
1 - An actor that actually changes the camera's x,y,z values (like what you have in your code)
2 - An actor that serves as a 'tag', and has a hitag value equal to one (and only one) of the 'camera' actors in the map. When the player enters the same sector as this 'tag' actor, it puts its hitag value into a global gamevar, and the camera actor ONLY changes the camerax, y, z vars if its hitag value is equal to the value of that global variable.
This system pretty much worked flawlessly, and I could put camera actors as close together as I wanted as long as I made sure they each had a unique tag that occupied a different sector. Either way, distance checks ain't the way to go. Trust me.
This post has been edited by EmericaSkater: 10 November 2011 - 03:24 AM
#8 Posted 10 November 2011 - 03:40 AM
tanks for the help, I'll try to improve the code, and soon I will post here again.
#9 Posted 10 November 2011 - 03:51 AM
gamevar CAMX 0 0 gamevar CAMY 0 0 gamevar CAMZ 0 0 gamevar CAMA 0 0 gamevar CAMZD 0 2 gamevar CAMON 0 0 gamevar CAMH 0 0 gamevar x 0 0 gamevar posx 0 0 gamevar y 0 0 gamevar z 0 0 gamevar ang 0 0 // Fixed Camera define FIXIECAM 555 action NOWT 1 1 1 1 0 move DONTMOVE 0 0 ai LOOKIEHERE NOWT DONTMOVE faceplayerslow // you can use faceplayer and faceplayersmart too. actor FIXIECAM cstat 32768 getactor[THISACTOR].lotag CAMH // will get the hitag of the camera and change horizontal angle of camera. ifpdistl 8192 // change this to desired distance ifcanseetarget // make sure it has a line of sight to the player { ai LOOKIEHERE setvar CAMON 1 getactor[THISACTOR].ang CAMA getactor[THISACTOR].x CAMX getactor[THISACTOR].y CAMY getactor[THISACTOR].z CAMZ } else ifpdistg 20000 { setvar CAMON 0 } else nullop enda
You will need to enter some code in EVENT_DISPLAYROOMS
onevent EVENT_DISPLAYROOMS ifvare CAMON 0 { setplayer[THISACTOR].over_shoulder_on 0 getplayer[THISACTOR].ang CAMA getplayer[THISACTOR].posx CAMX getplayer[THISACTOR].posy CAMY getplayer[THISACTOR].posz CAMZ setvarvar camerax CAMX setvarvar cameray CAMY setvarvar cameraz CAMZ setvarvar cameraang CAMA } ifvare CAMON 1 { setplayer[THISACTOR].over_shoulder_on 1 setvarvar camerax CAMX setvarvar cameray CAMY setvarvar cameraz CAMZ setvarvar cameraang CAMA setvarvar camerahoriz CAMH } // and remember to have any other code you need in this event written before the endevent. endevent
Edit: Now changes to player view when out of range
This post has been edited by High Treason: 10 November 2011 - 04:15 AM
#10 Posted 10 November 2011 - 04:04 AM
#11 Posted 10 November 2011 - 04:16 AM
Either way, hopefully the code is of some help to Dk2, I know that when I am trying to code something I like to have as many examples as possible lying around.
This post has been edited by High Treason: 10 November 2011 - 04:17 AM
#12 Posted 10 November 2011 - 04:28 AM
why?
EDIT: I've changed lotag to "hitag" in the srting "getactor[THISACTOR].lotag CAMH // will get the hitag of the camera and change horizontal angle of camera."
now is working =)
This post has been edited by Dk2: 10 November 2011 - 04:39 AM
#13 Posted 10 November 2011 - 04:39 AM
Dk2, on 10 November 2011 - 04:28 AM, said:
why?
Some kind of hardcoded crap to do with the lotag IIRC. It's best that you just avoid use of the lotag completely. Change that structmember to something like 'extra' or 'xvel'.
#14 Posted 11 November 2011 - 07:55 AM
i've maked my own JIBS (defined as a projectiles)
I'm using zshoot to make they shoot to the sky, but they are too fast, and aways shoot to + - 45º degrees ahead.
DeeperT have talked about the state "randtraj", but it's falling.
what I do to make they shoot properly and don't fall in the same position?
#15 Posted 11 November 2011 - 12:20 PM
#16 Posted 11 November 2011 - 01:05 PM
You can also modify xvel and zvel directly in EVENT_GAME (where randtraj state should be set), or combining two methods.
Xvel and zvel should be properly set with your own formula, maybe involving trigonometry or something similar. I'm sure you are coding a gore improvement like mine, in this case the first method is better because variables can be calculate within the actor which shoots out jibs projectiles. Then you can use randtraj (you have to write it before) in EVENT_GAME.
Feel free to ask better explanations.
This post has been edited by RichardStorm: 11 November 2011 - 01:24 PM
#17 Posted 14 November 2011 - 07:30 AM
#18 Posted 09 December 2011 - 11:31 AM

My goal is to do a Resident Evil 2 TC, following exactly the original story of the game (not so original)
Currently my job is programming (Cobol in Net Express)
but in the language CON still have some difficulties.
I would like everyone's help, who knows how to make textures, modellers, programmers ... (I don't know nothing about modeling)
everyone will be in the credits of OUR mod.
add my msn angel.bnu@hotmail.com if any of you are interested in helping me hard
Edit: NEED THE MODEL OF LEON SOON AS POSSIBLE!!!!!!!!
This post has been edited by Dk2: 09 December 2011 - 11:41 AM
#19 Posted 05 January 2012 - 11:23 AM
I've made a "wall barricade model"

here the DEF lines:
// Barricade (415) model "highres/sprites/props/barricade.md2" { scale 1 shade 0 detail { file "highres/detail/wood.png" detailscale 0.3 } skin { pal 0 file "highres/sprites/props/barricade.png" } frame { name "frame" tile 415 }
and here the CON code:
define BARRICADE 415 actor BARRICADE 0 0 ifpdistl 512 ifhitspace quote 134 enda
("cstat" and "sizeat" is defined by the user in mapster)
don't works. what is wrong? CON is ok, but the model don't spawn at the game, only the default sprite.
EDIT: there is no errors or warnings on "eduke32.log".
This post has been edited by Dk2: 05 January 2012 - 11:27 AM
#20 Posted 05 January 2012 - 01:35 PM
frame { name "frame" tile 415 }
Are you quite sure that the frame name is called "frame"
If this is not correct it will not show up in game.
#21 Posted 05 January 2012 - 03:46 PM
Quote
yep.

in "FRAMES" always remain 0.
even if I change the value to 9999, it go back to 0 again.
This post has been edited by Dk2: 05 January 2012 - 03:47 PM
#22 Posted 05 January 2012 - 10:13 PM
#23 Posted 06 January 2012 - 05:17 AM
Quote
No. The model don't works in mapster and eduke32.
when I put the actor on mapster, only show the default sprite of the game (sign that says "USA")
#24 Posted 06 January 2012 - 05:29 AM
#25 Posted 06 January 2012 - 05:38 AM
This post has been edited by Dk2: 06 January 2012 - 05:39 AM
#26 Posted 06 January 2012 - 05:40 AM
Attached File(s)
-
Barricade.rar (187.27K)
Number of downloads: 274
#27 Posted 06 January 2012 - 11:40 AM
Your defs had mistakes in them.
These were the ones you posted:
// Barricade (415)
model "highres/sprites/props/barricade.md2" {
scale 1 shade 0
detail { file "highres/detail/wood.png" detailscale 0.3 }
skin { pal 0 file "highres/sprites/props/barricade.png" }
frame { name "frame" tile 415 }
These are the new ones that should work:
// Barricade (415)
model "highres/sprites/props/barricade.md2" {
scale 1 shade 0
detail { file "highres/detail/wood.png" detailscale 0.3 }
skin { pal 0 file "highres/sprites/props/barricade.png" }
frame { name "frame000" tile 0415 }
}
A } was missing at the end, your framename was wrong and the tilenumber.
This post has been edited by chicken: 06 January 2012 - 11:43 AM
#28 Posted 06 January 2012 - 02:23 PM
You dont need the zero in front of 415 though.
#29 Posted 06 January 2012 - 03:53 PM
Example
gamevar TEMP 0 2 gamevar camera_HITAG 0 2 gamevar cur_CAMERA 0 1 gamevar cur_CAMERA_id -1 1 eventloadactor CAMERASPRITE getactor[THISACTOR].hitag camera_HITAG setactor[THISACTOR].hitag 0 enda useractor notenemy CAMERASPRITE ifvarvare cur_CAMERA camera_HITAG setvarvar cur_CAMERA_id THISACTOR enda state changecamera // This would go in the APLAYER code getsector[THISACTOR].hitag TEMP ifvarg TEMP 2304 // to avoid doing anything with the HITAG unless it's outside of a normal range setvarvar cur_CAMERA TEMP ends event EVENT_DISPLAYROOMS ifvarn cur_CAMERA_id -1 { getactor[cur_CAMERA_id].x camerax getactor[cur_CAMERA_id].y cameray getactor[cur_CAMERA_id].z cameraz // Easiest to use EXTRA or SHADE for horiz. EXTRA being the easier of the two. // Personally I do some fancy math to make the camera's angle always face the // player horizontally and vertically. getactor[cur_CAMERA_id].ang cameraang getactor[cur_CAMERA_id].extra camerahoriz getactor[cur_CAMERA_id].sectnum camerasect } endevent
Sure you need extra sectors to handle switching back and forth between cameras but you get a very controllable experience.