Please login or register.

Login with username, password and session length
Advanced search  

News:

Forum rules - please read before posting, it can save you a lot of time.

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 - tinchopunk

Pages: [1] 2
1
Technical forum / blender 2.63
« on: June 20, 2012, 03:54:36 AM »
Any help to use 2.5d with blender. Cose all i saw was for an older version of blender. Any help with be usefull.
thanks

2
Foro técnico / EL ETERNAUTA
« on: April 08, 2011, 07:33:50 PM »
Hola comunidad, arranque el proceso de programacion del juego el eternauta que se basa en el comic argentino, la verdad hace mucho q no usaba el wintermute, pase por varias etapas y volvi aqui, la sorpresa es que me encontre con un mundo nuevo y diferente al anterior, el juego es con personajes 3d.
Necesitaria algun escript o ejemplo mejor de manejo del personaje con teclas como el grim fandango. Alguna ayuda?

3
Technical forum / a lot of new things
« on: April 07, 2011, 10:23:29 PM »
Ok i will start the developing of EL ETERNAUTA, i need some examples for doing my game:
1st move 3d actor with keys like grim fandango the same for space for actions, i inventory, enter for look.(I can find spank the hero example :( but i don't know if that help)
2nd some orientation with objects like atach a gun or objetcs to give.
3rd comic bubbles for talking or thinking, they will be 4 or 5 characters
4th something to emulate snow(3d)
I know there are a lot of things but i think it's not to much for the experts of the forum :)
Thanks
   Martin

4
Bug reports / blue screen
« on: April 07, 2011, 07:21:27 PM »
I have a problem with the new wme it crashes with the traditional blue screen, i have xp and integrated video card

5
Game announcements / El eternauta
« on: April 07, 2011, 02:38:57 AM »
Hi i´m an old new user of wintermute, i sayd old cose i used i don´t know but a lot years javascript:void(0); Now i have a problem i´m making a game about the comic El Eternauta, an argentinian comic, now i´m modeling the characters and the first place to make a demo. At the beginning i use DAGE engine cose the idea it´s a completly 3d game, but something happend with the engine and have some problems doing there, so i´m back to the old love to give another shoot, and saw a lot of change so i found that i´m a new guy with a proyect. Here is the page of the proyect http://martinarregui.tumblr.com/ it´s in spanish but everybody can see the pics  :P. Well i´m extending a lot in this topic.
My idea is if somebody could help with the programing, i have a band making the sound track, me with the 3d and animation and re writing the history and puzzles, another guy with 3d, and have a hole with the programing. It will be with 3d characters and control with keys like grim fandango, mybe will be a potencial comercial game with a lot of publicity with the fans of the comic so my mail is tinchopunk@hotmail.com and i´m ready to start now :)
thanks
 MArtin

pd: the game will be translated in spanish, german, french and english

6
Won't implement / weird petition
« on: March 17, 2006, 12:51:09 AM »
It´s there a posibility to make a port of wintermute that you can play our games in the cell phone in symbian?

like the scummvm can emulate the games like monkey island and etc... mybe make same modification i don´t know but i read that the guys in scummvm need the original code, and i think that will be and adventaje here...

it´s only a curiosity...
thanks
 MArtin

7
Game announcements / mdq insident proyect
« on: February 28, 2006, 12:52:17 AM »
ok this is the first pic, only rendered and with work a head in max8...
I´m the only one in this proyect and i feel a litle bit insecure for that i need help listening good critics...
http://martinarregui.8k.com/pantalla.jpg

thanks
 Martin

8
Technical forum / inventory
« on: October 24, 2005, 04:41:44 PM »
i want to make an inventory like in the game shelock holmes 2 that you right click of the mouse and apear the inventory and a book that you can go to a map, see past dialogos, etc. How can i do that??? and of course you right click again and diseapear...
thanks
 Martin

9
Technical forum / moving 3d objects
« on: June 07, 2005, 03:28:33 AM »
Ok i want to make something in 3d like mi character (the same bones of the 3d example) pick a chair and move it.
1st)Take the chair with one hand
2nd)move my character with the chair everywhere
3rd)place the chair anywehere
4th)the chair you can´t transpace sorry my english but i think everybody know that an object in wintermute it´s like transparent...
so any help???
thanks
 MArtin

10
Technical forum / inventory
« on: March 01, 2005, 12:56:07 AM »
ok all the time talking in 3d character...
I want to make something like Grim Fandango, so when i touch ctrl (or other key) the character scrab in a bag (animation that i make) and then all the thing of the inventory apear one at a time moving the arrows, and when i select what i want you have the object in the hand(another thing that i already know)...
please some help
 Martin

11
Technical forum / alone in the dark
« on: February 17, 2005, 10:25:48 AM »
ok how can i make something like alone in the dark...
more like the part of shoting, the rest i know
and always in 3D
thanks
 MArtin

12
Technical forum / window talk
« on: February 08, 2005, 01:30:13 AM »
I want to make a window when i have to talk with somebody.
ej:
   in the left a pic of wich is talking and in the rest of the window the speach, or the option to talk...
thanks
 MArtin

13
Technical forum / script problem
« on: February 08, 2005, 01:27:34 AM »
I want to talk between actors
I have my actor and another 3dactor called vago you can not use that

the script:
  #include "scripts\base.inc"

global Statecallejon;
global vago;
////////////////////////////////////////////////////////////////////////////////
on "Talk"
{
 
  Game.Interactive = false;
  if(!Statecallejon.TalkedTovago) actor.Talk("Hola alienigena");
  else actor.Talk("Soy yo otra ves");
  vago.Talk("Hola");
  Statecallejon.TalkedTovago = true;
  vagoDialogue();
  Game.Interactive = true;
}


////////////////////////////////////////////////////////////////////////////////
function vagoDialogue()
{
  var Responses;
  var Selected;

  var Loop = true;

  while(Loop)
  {
    Responses[0] = "¿Qué sos?";
    Responses[3] = "Es una perdida de tiempo hablar con un alienigena";

   
    Game.AddResponse(0, Responses[0]);
    Game.AddResponse(3, Responses[3]);

    // let the player choose one
    Selected = Game.GetResponse();

     actor.Talk(Responses[Selected]);

     if(Selected==0)
    {
      vago.Talk("Soy un Kiwutziano");
      actor.Talk("Ah si mi primo es Kiwutziano...");
      vago.Talk("No creo que sea del mismo lugar que yo");
    }
    else
    {
      vago.Talk("Lo mismo digo");
      Loop = false; // we want to end the dialogue
    }
  }
}





////////////////////////////////////////////////////////////////////////////////
on "LookAt"
{

  actor.Talk("Parece ser un alienigena amistoso");
 
}

////////////////////////////////////////////////////////////////////////////////
on "Take"
{


  actor.Talk("Creo que un conflicto intergaláctico no es la solución para tantos problemas");
}





14
Technical forum / how can i make a stair?
« on: February 07, 2005, 02:20:51 AM »
ok i make something like some steps with the name walk_step01 etc but the character doesn´t get down and up...
any solution??
thanks
 MArtin

15
Technical forum / selection of character
« on: February 03, 2005, 05:24:09 AM »
Ok i have a start up menu where i can select wich character i want to use...
How can i made that??  I used Game.LoadActor3D() and change scene but didn´t work...
some help??
thanks
 Martin

Pages: [1] 2

Page created in 0.07 seconds with 18 queries.