![]() |
#1 |
Problems with Findnearactor
Hi everybody,
![]() I have a problem with the findnearactor function. There is an actor that it's moving (CRANE2), and I want to change its action when it finds a 5991 actor. The code its that: actor CRANE2 ... ifaction CRANE2ACTION1 { findnearactor 5991 16 FINDO ifvarn FINDO -1 { quote 1 getactor[FINDO].x auxy1 getactor[FINDO].y auxy2 setactor[THISACTOR].x auxy1 setactor[THISACTOR].y auxy2 setvar FINDO -1 action CRANE2ACTION2 } else { move CRANE2MOVE1 geth getv } ... The variables auxy1 and auxy2 are defined for every actor. The problem is that the actor CRANE2 never gets the CRANE2ACTION2 action. Is there any mistake with the code? ![]() Thanks!!! ![]() |
|
![]() |
![]() |
#2 |
Re: Problems with Findnearactor
Does it display the quote and move the crane like you specified the code. Or is it only the Action it does not work. It is possible that the actor that uses the findnearactor command never even finds the other actor.
I have the Findnearactor command not clearly in my head right now. But 16 seems an awfully small area to look for another actor. (While we are on the subject. Does find near actor check whether or not it can actually see the actor. Or does it also find actors that are sheltering behind a wall made out of red lines and thus are out of sight?)
Last edited by lycanox; 02-21-2009 at 08:40 AM.
|
|
![]() |
![]() |
#3 |
Re: Problems with Findnearactor
AFAIK, it does find actors behind the walls; and won't work if there are 2 actors picked at the same time; and yes 16 is VERY small, hell even 512 is so damn small. Use 1024 or 1280 to see if your code works.
Apart from that, there's nothing more I can say.
__________________
---HELLDUKE TC--- NEW STABLE MIRROR SECONDARY MIRROR ---GAMEPLAY VIDEO--- Gameplay Footage of my Mod. |
|
![]() |
![]() |
#5 |
Re: Problems with Findnearactor
I really hate to download stuff to solve a little CON problem. Is there really so much code that you can't post it?
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#6 |
Re: Problems with Findnearactor
No, there is not so much code, it's just:
Code:
gamevar auxy1 0 2 actor 1140 { findnearactor 1141 2048 auxy1 ifvarn auxy1 -1 { quote 30 } else quote 20 } enda |
|
![]() |
![]() |
#7 |
Re: Problems with Findnearactor
Why are you using such a small distance? Also, you can safely delete all of your { and }
Anyway, to answer your question: Assuming that you just posted all of your code, the problem is that 1141 is not an actor, therefore it is not found by findnearactor. Either make it an actor or use findnearsprite instead.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more.
Last edited by DeeperThought; 03-11-2009 at 03:13 PM.
|
|
![]() |
![]() |
#8 |
Re: Problems with Findnearactor
Fixed:
Code:
gamevar auxy1 0 2 useractor notenemy 1140 findnearsprite 1141 2048 auxy1 ifvarn auxy1 -1 { quote 30 } else { quote 20 } enda |
|
![]() |
![]() |
#9 | ||
Re: Problems with Findnearactor
Quote:
Quote:
![]() |
|||
![]() |
![]() |
#10 |
Re: Problems with Findnearactor
What, you mean like in the example you gave?
![]() |
|
![]() |
Bookmarks |
|
|