ikechi Wrote:yeah i would love to see a gangbang and maybe be able to change the skins of the clothes
Yea I'm not exactly an expert at flash either but I decided to look at the fla of the LoK game and this is the code I found.LuftMallow Wrote:ikechi Wrote:yeah i would love to see a gangbang and maybe be able to change the skins of the clothes
I'd be able to animate a gangbang, but my lack of scripting skills past making buttons playing a frame on the time-line will make changing around the girls problematic. If some one could be point me to a way to do it, I'd get on it.
if(!_root.peach){
if(_root.daisy)
gotoAndPlay(3);
else if(_root.rosa)
gotoAndPlay(5);
else if(_root.emorosa) // assuming the new variable is call emorosa in code
gotoAndPlay(7); // assuming the emorosa is on frame 7
}
currentCharacter = "peach" //new variable to replace all _root.peach, _root.daisy, etc.
// rather then setting _root.peach to false and _root.daisy to true, simply set _root.currentCharacter = "daisy"
switch(_root.currentCharacter){
default : //By default, Peach is selected if currentCharacter is not set, or contains an incorrect value.
case "peach": gotoAndPlay(1); break;
case "daisy": gotoAndPlay(3); break;
case "rosa": gotoAndPlay(5); break;
case "emorosa": gotoAndPlay(7); break;
case "insert new char name here": gotoAndPlay("the frame the char is on"); break;
}
gotoAndPlay(_root.currentCharacter);
Users browsing this forum: No registered users