Daspex's Switchable Info Panel + Sandbox + Help Screens (IdolNinjaVersion) Mod

Character Selector ready (nearly).
Now you can choose the character to play the animation.This was important cause i'm running out of key's. :)
SaintsRowIV 2018-05-18 09-21-03.png

View attachment 18988
View attachment 18990
That's cool. :)

I set the variable ACTOR for the player and followers but idk sould it be
ACTOR =
or
ACTOR = ""

to set the value to 0 or empty?
I took
local ACTOR
It works.
 

Attachments

  • gameplay_the_selector.lua
    1,011 bytes · Views: 432
Last edited:
Yeah, "" sets empty string variable
Ah,thats makes some things more clear i read in some scripts.Thanks.
I left it empty works good but it reacts very slowly is that normal behavior?
 
Can the var be set to = local_player,follower1,follower2,follower3 ?
 
Can the var be set to = local_player,follower1,follower2,follower3 ?
Yeah, but not like this, it can be like var1, var2, var3 =local_player,follower1,follower2,follower3 or like table
Code:
actor={
first ="LOCAL_PLAYER",
second ="follower1",
third = "follower2",
}
-- and call some table child as actor.second
 
Back
Top