Since I began watching Prison Break (a really good and interesting series ) I felt the need of painting this:

of course I'm using this for my game
What do you think??

of course I'm using this for my game
What do you think??
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function SayBackgroundAnimating(Character *Char, const string message,...){
Char.LockView(Char.SpeechView);
int timer= 300;
Overlay *over=Overlay.CreateTextual(Char.x,Char.y-100,100,1,Char.SpeechColor,message);
Char.Animate(0, 4, eRepeat,eNoBlock,eForwards);
while(timer>0){
timer--;
}
Char.Animate(0, 4, eOnce,eNoBlock,eForwards);
over.Remove();
Char.UnlockView();
}
SayBackgroundAnimating(cCupon, " Buy today!!!! ");
//At rep_ex:
GetLocationScriptName(mouse.x,mouse.y).Animate(8,6,eOnce,eBlock,eForwards);
//It would make, the object or the character which has the mouse over animate
//Script header
float health= 100.00;
//In global script, at repatedly execute
lblhealth.Text=String.Format("Health=%.0f",health);
//E.g.:At dialog request
health=health+10.00;
//script for Room: Repeatedly execute
//At attack time
health=health- 10.00;
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.099 seconds with 14 queries.