31
Ask a Question / How do I publish a free to play HTML 5 game to Stencyl arcade please?
« on: April 07, 2022, 05:15:59 pm »
My name is Jason and instead of a flash .swf game I one day want to publish an HTML 5 game to Stencyl Arcade.
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.
self.PharaohManID = 117;
if (self.PharaohManID == 117)
{
x += 17;
}
with(PharaohMan)
{
if (PharaohManID == 117)
{
PharaohManHP += 138;
}
}
to work properly in Stencyl please?
if (instance_place(x+17,y,Chozo_Statue))
{
ipCSx17 = instance_place(x+17,y,Chozo_Statue).id;
ipCSx17.direction = 217;
ipCSx17.speed = 11;
self.speed = 11;
self.direction = 217;
}
if (instance_position(x,y-16,Flower))
{
ipFy16 = instance_position(x,y-16,Flower).id;
ipFy16.direction = 118;
ipFy16.speed = 14;
self.speed = 14;
self.direction = 118;
}
please? Thank you.