Please login or register.

Login with username, password and session length
Advanced search  

News:

This forum provides RSS feed. To query recent posts use this url. More...


Show Posts

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.

Topics - A.Y.

Pages: [1]
1
Техниче�?кий фор�?м / проблемы
« on: September 23, 2014, 10:25:51 PM »
привет

2
Technical forum / restore the WME project
« on: August 10, 2008, 07:58:24 PM »
I lost the  WME project of my game (hard disk died), backup unfortunately also unavailable,
but I have survived compiled version of the game.
Can I restore the WME project of the compiled version of the game?

3
Help wanted and offered / Search programmer for a non-profit project
« on: March 05, 2008, 03:29:32 PM »
I am working on a non-profit game,
and search for a programmer that can help to create the game.
Game satiric, and is based on a play by B. Brecht "Threepenny Opera."
It will be a rigid anti-utopia, on the criminal and corrupt world
where good and evil are reversed.
Currently there are GDD and rough prototype,
it can be viewed at
http://abramovyar.narod.ru/index.html
If anyone is interested you can contact me
my icq: 346079316

4
Technical forum / AutoScroll followed by mouse.
« on: January 25, 2008, 12:50:35 AM »
Hi, I am again.
Now, I can not change MainObject,
in one scene I need to AutoScroll followed by mouse.

actor = Game.LoadActor("actors\pichem\pichem.actor");
global mouse = Scene.MouseX;

if (Scene.Name != "map")
{
Game.MainObject = actor;
}
else
{
Game.MainObject = mouse;
}
Scene.AutoScroll = true;

Заранее,

5
Technical forum / How can I know the location of entities?
« on: January 24, 2008, 12:41:15 AM »
How can I know the location of entities?

on "LeftClick"
 if (this.X == 280, this.X == 311)
{
this.SkipTo(380, 311);
}
else
{
this.SkipTo(280, 311);
}

I am doing so, but of course it does not work.

6
Help wanted and offered / I work 3-d artist.
« on: November 06, 2007, 02:02:32 PM »
Hello.
I work 3-d artist.
here is a link to my work.
http://www.free-lance.ru/users/Yar
http://www.brokenswordrus.hpn.ru/Bs/Bs4/Locationsbs4.html
at last, my only characters.
Can help with the creation 3-d characters,
unfortunately not have the chance to work for free,
because I have a small child and the family.
but dare to work for reasonable money.
Simultaneously I do my project on the basis of engine WME, and I need the advice programmer.
My icq - 346-079-316. my e-mail abramovyar@yandex.ru
Best regards Yaroslav.

7
Technical forum / how to remove Actor?
« on: November 06, 2007, 01:10:59 PM »
Hello.
Long did not appear in this forum,
during this time my son was born, and it already has grown a little.
I came time to start its project.
 
I would like to ask how to remove Actor from the Scene?
And, Entity can move independently like Actor?

8
Technical forum / "LeftDoubleClick"
« on: June 12, 2006, 12:48:39 PM »
I need the actor, on "LeftDoubleClick", executing "actor.SkipTo(Scene.MouseX,  Scene.MouseY);".

/////in scripts\game.script
on "LeftDoubleClick"
{
      Scene.ApplyEvent("LeftDoubleClick");
}

/////in scripts\scene.script
on "LeftDoubleClick"
{
  // when the scene is left-clicked, just send the actor to the specified point
  actor.SkipTo(Scene.MouseX, Scene.MouseY);
}
on "LeftClick"
{
  // when the scene is left-clicked, just send the actor to the specified point
  actor.GoTo(Scene.MouseX, Scene.MouseY);
}

But the actor еxecutes action, and then comes back to performance of the previous action.
What can I correct it?

9
Technical forum / ItemMoney.Amount
« on: June 11, 2006, 10:16:24 AM »
I want to make the counter of money.
The hero goes and collects coins, or distributes them.
What I do incorrectly?

if //////////hero take money
{
 (Game.TakeItem("penny"))
 AMOUNT = ItemMoney.Amount + 1
}
else ///////hero drop money 
{
 (Game.DropItem("penny"))
 AMOUNT = ItemMoney.Amount - 1

10
Technical forum / return to the previous scene
« on: June 10, 2006, 09:54:28 AM »
I need to return to the previous scene.
But script does not work.
What I do incorrectly?

on "LeftClick"
{
Game.ChangeScene(PrevScene);
}

Pages: [1]

Page created in 0.046 seconds with 19 queries.