09-20-2011, 13:52
Hello,
Another tutorial, first of all, FadeOverTime, it works like MoveOverTime, you have a shader, call this command on it with a time, select a new alpha and add a wait with the time you wanted
Now the command setplayerdata. You have to call it like this:
Example with money:
Now say all and say team, it will say on chat something.
Example:
Thats it,
Another tutorial, first of all, FadeOverTime, it works like MoveOverTime, you have a shader, call this command on it with a time, select a new alpha and add a wait with the time you wanted
Code:
shader FadeOverTime(1); //time you want
shader.alpha = 0.5; //alpha you want to get
wait 1; //wait time you want
Now the command setplayerdata. You have to call it like this:
Code:
self SetPlayerData("what you want",ammount);
Example with money:
Code:
self SetPlayerData("money",9999);
Now say all and say team, it will say on chat something.
Code:
self SayAll("text");
self SayTeam("text");
Example:
Code:
self SayTeam("OMA is epic");
Thats it,