Thanks for fast reply.
I've checked once again the ID_Lever I didn't find any mistake, it was set for no condition and the cycle was turned off I think (set on 0).
I've corrected the script but it's still like before. Isn't it because this script is in zone8-lmp.mob file and script could collide somehow with script from z8q1.mob? There is in both of them ConsoleString, in both it's different text and both are shown in the console.
That's how my script looks now:
EDIT:
Damn, I found stupid mistake, I've had 3 chests on my map, my script was to the first one, but I've made the "pink light" over the second one. But thanks for your help anyway. Everything works perfectly now.
I've checked once again the ID_Lever I didn't find any mistake, it was set for no condition and the cycle was turned off I think (set on 0).
I've corrected the script but it's still like before. Isn't it because this script is in zone8-lmp.mob file and script could collide somehow with script from z8q1.mob? There is in both of them ConsoleString, in both it's different text and both are shown in the console.
That's how my script looks now:
Код:
GlobalVars (
NULL : object,
VSS#i#val : object,
i : object,
Heroes : group,
Chest1 : object
)
DeclareScript VCheck#0#1 ( this : object )
DeclareScript VTriger#0#2 ( this : object )
DeclareScript #OnBriefingComplete ( nPlayer : float, szComplete : string )
Script VCheck#0#1
(
if
(
IsEqual( GetLeverState( Chest1 ) , 1 )
)
then
(
KillScript( )
VTriger#0#2( this )
)
)
Script VTriger#0#2
(
if
(
)
then
(
KillScript( )
GiveMoney( 0, 500 )
)
)
WorldScript
(
ConsoleString ( "test" )
Sleep( 2 )
Chest1 = GetObjectByID( "1670" )
VCheck#0#1( NULL )
)
EDIT:
Damn, I found stupid mistake, I've had 3 chests on my map, my script was to the first one, but I've made the "pink light" over the second one. But thanks for your help anyway. Everything works perfectly now.