Like to rate videos and let people know what you think?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
Like to share videos with friends?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
dammit i whish i had the real version but there is goood with the demo. i have changed the scene scripts so much and enable research that the demo dosn't allow. it just dosn't have the graphics for things thats all.
OK I'm gonna translate what he is saying in Brazilian Portuguese. UiaHH the script looks simple and very useful! I Found interesting the trainer bot move in 45 degree to GOTO. please how to open the exercises ???
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
item = radar(TitaniumOre);
if (item(distance(position, SpaceShip.position) > 20));
{
goto(item.position);
grab();
}
item = radar(SpaceShip);
goto(item.position);
drop();
there aparantly is a error in the second string...
if (item(distance(position, SpaceShip.position) > 20));
Correct code would be:
object ship=radar(SpaceShip),item=rad ar(TitaniumOre);
while(item!=null&distance(item .position,ship.position)>20)
{
goto(item.position);
grab();
goto(ship.position);
drop();
item=radar(TitaniumOre);
}
(yes, i like advanced code :D) (it might be && instead of & in the while, test both)
UiaHH
the script looks simple and very useful!
I Found interesting the trainer bot move in 45 degree to GOTO.
please how to open the exercises ???