Please login or register.

Login with username, password and session length
Advanced search  

News:

IRC channel - server: waelisch.de  channel: #wme (read 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.

Messages - cremen

Pages: 1 [2]
16
Can't reproduce / Project dont run from ProjectMan.
« on: February 13, 2009, 07:27:36 PM »
subj.

after pressing run button -> appear message box with text: "Some of the essential game files cannot be loaded. Please reinstall the game and try again.".

with any project.

P.S. Win7. WME 1.8.009
P.P.S. ProjectMan log is clean.

17
ok, it fix helped.

thanks for your time.

18
This animation are played successfully in DirectX SDK viewer. (loop without any artefacts)

P.S. In Brume C# Engine too.

19
ok, this is some sources (with some loading errors)
(sources and compiled package is some dirty archive)

points of interests: scenes\albina\scr\scene_init.script, see the comments

albina.IdleAnimName <- bug here
albina.SetAnimTransitionTime <- some tryouts to fix, but not working.

http://pinktown.ru/public/animbug.zip 2.8 mb (becouse contain compiled packages)

20
sorry, more info:
Actors are 3d (*.x-files)

and some code:
Code: [Select]
albina = Game.LoadActor3D( "actors\albina\albina.act3d" ); // mesh = albina.x
albina.MergeAnims( "actors\female\albinas_special.X" );
albina.IdleAnimName = "read";
so bug still present.
but, if this animation is in original albina.x file and named as "Idle", then no bug

21
WME 1.8.009 bug still present...

22
Scripts, plugins, utilities, goodies / Re: Icon based dialogues
« on: June 21, 2008, 01:06:33 PM »
a little improove for other users:

in the initializeDialogue method at the end
add little command:

Code: [Select]
tmpwin.ApplyEvent("Init");
and in the reactions.script

add "Init" event like this:

Code: [Select]
on "Init"{
dlgObject.insertIcon("first","icon.png","icon.png"); // insert some real image file instead of icon.png
dlgObject.insertIcon("second","icon.png","icon.png"); // insert some real image file instead of icon.png
dlgObject.insertIcon("third","icon.png","icon.png"); // insert some real image file instead of icon.png
}

and then you need to show your dialog, use command like this:
Code: [Select]
dlgObject.initializeDialogue("scripts\reactions.script");
it will be automaticly started.

this method is more usefull, becouse all icon based dialogs by one per file, you may just call
Code: [Select]
dlgObject.initializeDialogue("scripts\dialog1.script");
or
Code: [Select]
dlgObject.initializeDialogue("scripts\dialog3.script");
and all logic in the one file.

thanx for your engine.

P.S. in my project i renamed initializeDialogue to showdialog

23
Not a bug / Re: Entity inventory not saved then i live scene.
« on: May 07, 2008, 03:03:32 PM »
ok i do it. it's work. but i found a little bug (?)

i created global variable:


Code: [Select]
global Inventories; // at base.inc


// at scene_init.script
if( Inventories["ENT_Box"] == null ){
   Inventories["ENT_Box"] = Game.CreateEntity("ENT_Box");
}

// at region
if( Inventories["ENT_Box"].HasItem("Some_Item") ){ // <- this code did't compile, syntax error... BUT!
  // do some, but..
}

// at region
var ent = Inventories["ENT_Box"];
if( ent.HasItem("Some_Item") ){ // <- this code compiled, and work...
  // do some,
}

i think it is'nt but, but i must...

24
Not a bug / Re: Entity inventory not saved then i live scene.
« on: May 07, 2008, 08:31:44 AM »
ok. thanks. i'll try it.

25
Not a bug / Re: Entity inventory not saved then i live scene.
« on: May 07, 2008, 07:08:04 AM »
i.e. at other hand, i must using actor and not entity for it?

26
Not a bug / Entity inventory not saved then i live scene.
« on: May 06, 2008, 08:15:40 PM »
Is it right behavior?

for WME_DEMO

at OldGuy.script i added code:

Code: [Select]
on "LeftClick"
{
  GoToObject();
  if( this.HasItem("Book") ){
this.DropItem("Book");
Game.TakeItem("Book");
  };
}

on "Book"
{
  GoToObject();
  Game.Interactive = false;
  Game.DropItem("Book");
  this.TakeItem("Book");
  Game.Interactive = true;
}

and then i give this guy book (Lovely WME Tutorial, i think) and after go to street, and go back... his inventory empty... is it right? (hey, OldGay, give back my book!!!)

P.S. sorry for my pure English.

Pages: 1 [2]

Page created in 0.039 seconds with 23 queries.