About actors
#1

Hello, is there possible to make something like

PHP код:
#include <foreach>
new ActorCJ[6];
public 
OnGameModeInit()
{
ActorCJ[0] = CreateActor(00.00.03.00.0);
ActorCJ[1] = CreateActor(00.00.03.00.0);
ActorCJ[2] = CreateActor(00.00.03.00.0);
ActorCJ[3] = CreateActor(00.00.03.00.0);
ActorCJ[4] = CreateActor(00.00.03.00.0);
ActorCJ[5] = CreateActor(00.00.03.00.0);
ActorCJ[6] = CreateActor(00.00.03.00.0);
for(new 
06++) {
    
ApplyActorAnimation(i"DEALER""DEALER_IDLE"4.0100001);
}
return 
1;

??
Reply
#2

bump anyone?
Reply
#3

Did you tried?
Reply
#4

Код:
#MAX_ACTORS 6
Try adding these and replace:
Код:
for(new i; i < MAX_ACTORS; i++) { 
    ApplyActorAnimation(i, "DEALER", "DEALER_IDLE", 4.0, 1, 0, 0, 0, 0, 1); 
}
Reply
#5

Hello!

When you want to do this, then like this:
PHP код:
#include <foreach> 
new ActorCJ[7]; 
public 
OnGameModeInit() 

ActorCJ[0] = CreateActor(00.00.03.00.0); 
ActorCJ[1] = CreateActor(00.00.03.00.0); 
ActorCJ[2] = CreateActor(00.00.03.00.0); 
ActorCJ[3] = CreateActor(00.00.03.00.0); 
ActorCJ[4] = CreateActor(00.00.03.00.0); 
ActorCJ[5] = CreateActor(00.00.03.00.0); 
ActorCJ[6] = CreateActor(00.00.03.00.0); 
for(new 
07++) { 
    
ApplyActorAnimation(i"DEALER""DEALER_IDLE"4.0100001); 

return 
1

Because you use 0-6 (0,1,2,3,4,5,6 = 7) but you defined it with 6. I hope you understand what I mean. ^^
Reply
#6

PHP код:

#define MAX_ACTORS 7
new ActorCJ[MAX_ACTORS]; 
public 
OnGameModeInit() 

    
ActorCJ[0] = CreateActor(00.00.03.00.0); 
    
ActorCJ[1] = CreateActor(00.00.03.00.0); 
    
ActorCJ[2] = CreateActor(00.00.03.00.0); 
    
ActorCJ[3] = CreateActor(00.00.03.00.0); 
    
ActorCJ[4] = CreateActor(00.00.03.00.0); 
    
ActorCJ[5] = CreateActor(00.00.03.00.0); 
    
ActorCJ[6] = CreateActor(00.00.03.00.0); 
    for(new 
0MAX_ACTORS++) 
    { 
        
ApplyActorAnimation(i"DEALER""DEALER_IDLE"4.0100001); 
    } 
    return 
1

Though, you won't need foreach for this loop.
Reply
#7

ApplyActorAnimation(ActorCJ[i], "DEALER", "DEALER_IDLE", 4.0, 1, 0, 0, 0, 0, 1);
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)