Jesse66126 4 Report post Posted September 8, 2008 Template: $game_actors[Character's ID].disabled_for_party = true/false $game_actors[007].disabled_for_party = <---------------Works true $game_actors[008].disabled_for_party = <---------------Doesn't work true $game_actors[009].disabled_for_party = <---------------Doesn't work true $game_actors[010].disabled_for_party = <---------------Doesn't work true $game_actors[011].disabled_for_party = <---------------Works true $game_actors[012].disabled_for_party = <---------------Doesn't work true I have no idea why but these syntaxes don't work with Blizzard's custom party change system. It's almost random about which ones work and which ones don't. Other Weird Glitches: I don't know how this is possible,but something is cutting off the bottom of Sophia's picture. It's only when she's the only one in the party,though. Like I said,Weird. Share this post Link to post Share on other sites
Polraudio 122 Report post Posted September 8, 2008 I think that blizzards scripts require SDK order for them work right. If not try it in a new project. Share this post Link to post Share on other sites
Leon 55 Report post Posted September 8, 2008 Template: $game_actors[Character's ID].disabled_for_party = true/false $game_actors[007].disabled_for_party = <---------------Works true $game_actors[008].disabled_for_party = <---------------Doesn't work true $game_actors[009].disabled_for_party = <---------------Doesn't work true $game_actors[010].disabled_for_party = <---------------Doesn't work true $game_actors[011].disabled_for_party = <---------------Works true $game_actors[012].disabled_for_party = <---------------Doesn't work true I have no idea why but these syntaxes don't work with Blizzard's custom party change system. It's almost random about which ones work and which ones don't. Other Weird Glitches: I don't know how this is possible,but something is cutting off the bottom of Sophia's picture. It's only when she's the only one in the party,though. Like I said,Weird. Blizzard makes some great scripts, but if you are using that syntax above, it is only natural to have some errors in the 'Script...' command. Reason being it reads those as 2 separate lines unless it is entered all at once. (if that makes sense). To remedy this, try this command using the 'Script...': a = $game_actors a[xxx].disable_for_party = true this snippet sets $game_actors to the variable a, and allows you to call upon those methods like normal. Share this post Link to post Share on other sites
Jesse66126 4 Report post Posted September 8, 2008 $game_actors[008].disabled_for_party = true This syntax doesn't work period. Seperate OR together. But if I put a "7" instead of an "8",poof it works! It's just random numbers that don't work. I have the most recent SDK folder in my game. It just doesn't want to work. Share this post Link to post Share on other sites