jaws?!
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 MenuQuote from: Khris on Thu 10/11/2011 00:38:06
In general, it's a good idea to plan stuff like this beforehand
function buttoninteract(int buttonpressed) {
if (button[buttonpressed]==false) { oButton[buttonpressed].Transparency=0;button[buttonpressed]=true;PlaySound(10); }
else { oButton[buttonpressed].Transparency=100;button[buttonpressed]=false; PlaySound(11);}
}
function oButton9_Interact()
{
buttoninteract(9);
}
function buttoninteract(int buttonpressed) { // here the 9 comes in
if (button9==false) { oButton9.Transparency=0;button9=true;PlaySound(10); }
else { oButton9.Transparency=100;button9=false; PlaySound(11);}
}
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.189 seconds with 17 queries.