Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
Sign in to follow this  
Jesse66126

Random Glitches and Syntax Errors

Recommended Posts

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:

freakyglitch.jpg

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
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:

freakyglitch.jpg

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

$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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...