ID:162981
 
I have a bleach game and i want to code tousen bankai that people around the banaki will see black screen and they cant move and only the one using the bankai can move and see what he want ><... if you can help me with this thx =X


the other thing is that i have a skill that called byakurai how can i move it from fighting and put it in the bar thx
Always willing to help out a programmer in need:

mob/var/frozen = 0 //Set this to 1 if you don't want the player to move.

mob/Move()
if( frozen ) return
..()

// Now to make the player blind, you should use the following:
usr.sight = BLIND


(A little note, please stop making Anime games and make something original like an RPG of your own)
In response to Metamorphman
Meta, you should tell people /how/ to do things, not do it for them. They don't learn with the latter.
In response to GoodDoggyTreat
Yeh, being willing to help a programmer in need isn't only holding their hand. Tell them how to get across the street with their hands chopped off.

Or just refer them to the... reference.
In response to Kaiochao2536
i saw what you say but can you tell how you back from blind?
what is the line
usr.sight = Normal?
In response to Sasuke_EX
Look up sight in the reference.