View Full Version : Any online dominoes games for more fun!!!!!
Jasperthin
09-03-2008, 11:36 AM
Hi everybody, I have just started playing dominoes and was wondering that if I can brush up my skills better. There is going to be a competition later, and I want to prepare for that. Learning some new tricks and tips would certainly help me to stand a better chance.
Any suggestions on that would be helpful.
Rorybeb
09-04-2008, 07:50 AM
I think that if you would have a basic search online ....you would find some material on that……may be a guide or a e-book……but in my opinion the best way to master a game is to play it on an on and the experience you have against your competitors will be the ultimate resource of learning. You can always play the game online and learn from that. There is dominoes game (http://www.dominoesstars.com/) which is a good online portal for dominoes players to make them more advanced with games against different players around the globe.
Jake2641
09-16-2008, 10:47 PM
Hi, I downloaded that file and found the following code was commented out
onClipEvent(enterFrame)
{
if (Key.isDown(Key.LEFT)) {
myCharacter.gotoAndStop("left");
_x--;
}
if (Key.isDown(Key.RIGHT)) {
_x++;
myCharacter.gotoAndStop("right");
}
if (Key.isDown(Key.UP)) {
myCharacter.gotoAndStop("up");
_y--;
}
if (Key.isDown(Key.DOWN)) {
myCharacter.gotoAndStop("down");
_y++;
}
(Key.isDown(Key.LEFT)) is AS2 code and doesn't work in AS3. If it did then I wouldn't have the following problem.
Futhermore I could not make the character go diagonal. For a game I am making I need this feature and I cannot find any way to make this happen. Go any ideas?
xdeath
09-20-2008, 06:07 AM
Hi, I downloaded that file and found the following code was commented out
onClipEvent(enterFrame)
{
if (Key.isDown(Key.LEFT)) {
myCharacter.gotoAndStop("left");
_x--;
}
if (Key.isDown(Key.RIGHT)) {
_x++;
myCharacter.gotoAndStop("right");
}
if (Key.isDown(Key.UP)) {
myCharacter.gotoAndStop("up");
_y--;
}
if (Key.isDown(Key.DOWN)) {
myCharacter.gotoAndStop("down");
_y++;
}
(Key.isDown(Key.LEFT)) is AS2 code and doesn't work in AS3. If it did then I wouldn't have the following problem.
Futhermore I could not make the character go diagonal. For a game I am making I need this feature and I cannot find any way to make this happen. Go any ideas?
yeah well if you put that code into as2 you will find an error i just counted the open and close brackets and you forgot the one at the end.
and if you need to use it for as3 i don't see why but if you do just take out the top two lines so all you leave is the rest of code then it will work for as3.
and i don't see how the "--" stuff is a useful way of movign something like this would be more helpful:
_root.myCharacter._x+=5 // change the value to what is needed
of course there are better ways of saying it, but that is just give the general idea of what i mean.
|
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.