prawnsushi's Forum Posts

  • Nice

    For those who can't (or won't) buy Photoshop (like me), you can also do this (almost the same way) in Gimp, with the plugin G'mic.

  • Valerien is right, but the order is ok anyway. Your problem was with the multiplications being inside the global variables parenthesis :

    Every tick -> Set variable totalmoney to int(global('Bronze'))+int(global('Silver')*100)+int(global('Gold')*10000)[/code:3lqo2a3s]
    
    Should be  :
    
    [code:3lqo2a3s]int(global('Bronze')) + int(global('Silver')) * 100 + int(global('Gold')) * 10000[/code:3lqo2a3s]
    
    or if you want to really separate everything :
    
    [code:3lqo2a3s]int(global('Bronze')) + (int(global('Silver')) * 100) + (int(global('Gold')) * 10000)[/code:3lqo2a3s]
  • Ok here are a few screens of my "game".

    I'm trying to work on the system so most of the graphics are placeholders. I won't obviously keep the Jennifer Simpson Sprite ^^:

    Walking around (well, standing still while i took the screenshot u_u):

    <img src="http://prawnsushi.free.fr/bazar/EC1.jpg">

    Being chased and getting crazy (nice frame rate drop lol) :

    <img src="http://prawnsushi.free.fr/bazar/EC2.jpg">

    And oh, spitting some gore (even more framerate drop u_u)

    <img src="http://prawnsushi.free.fr/bazar/EC3.jpg">

    Note : these FPS drops happen on a i3 530 + geforce 310

    Doesn't drop below 60 (Vsync) on my laptop (Q9000+radeon4650)...

    But right now it's got a problem :

    I gotta figure that out, or i'll be stuck with these textures...

  • Hi everyone,

    I got this little problem with my game:

    When i want to change a texture on one face of a 3dbox in my cap, construct crashes.

    It already happened before but somehow it was resolved(i think it was because i removed the .persist file).

    But now it's happening again. I removed the .persist file but it's still happening. Actually, even if i just open one face, and close it without saving, construct crashes. It happens with any of the boxes in the game.

    I tried on 2 different computers (both win7), and i got the same results.

    It doesn't happen when i create a new file, i can open/change the faces, it doesn't crash.

    Does anyone know how i can fix this? Or do i have to revert to good old tiled background and sprites?

    Would be sad because i liked the depth from the boxes. I use them to create sideview rooms/corridors and the player is inside the boxes :

    <img src="http://prawnsushi.free.fr/bazar/EC1.jpg">

    (Don't pay attention to placeholder textures or sprites)

    I tried to use the pattern effect to mimic the perspective but it just look stretched and blurry on the sides...

    Thanks in advance

  • You can also try SketchUp. I can't find an easier software to create 3D stuff.

    http://sketchup.google.com/intl/en/download/index.html

    You can start by importing or drawing the flat shape of your plane. And then extrude each part, giving them different heights. Will be a bit squary on the edges, but you can change that afterwards.

  • [quote:jv0xompd]But you see, you can figure out such problems while being tired, being not a programmer, and being making your first game with Construct

    I trained Jesus.

    Seriously, i don't know what was wrong. I just noticed that, after flipping 2 cards, when they flip back again, and you click on 1 or more card(s), the variable 'retournees" wanted to increment (or at least change) again, but then went back to zero... You can't see this in the debugger though. I saw this because i added a text object to your file :

    [quote:jv0xompd]+ System: Always (every tick)

    -> Text: Set text to global('retournees')

    Since retournees was being suspicious, i set it to a value that isn't tested by any condition in the code... and it worked (obviously, no events can be true while retournees is set to 3).

    Just call it "Pillow Logic"

    [quote:jv0xompd]and being making your first game with Construct

    First game ever i guess... but i wrote my website in Php back in 2003... never touched it again since lol There's only 1 page and maybe 3 functions in there... Still, iexplore can display it right while firefox has no problem.... pffffffffffffffffff i can't be bothered fixing these css issues.

    Wanted to make websites at that time, but i found out it was very boring, so i just gave up.

    But the thing is, people always say 'start with simple things'... i just start with things a bit more complicated. I can't seem to be able to make simple things

  • Just found this, via Devin Townsend 's facebook :

    [quote:2iixrgxr]http://www.khanacademy.org/

    Could be useful...

  • Try to delete the "game_name".persist file in your game's folder.

  • Tried it.

    [quote:3ayu926e]

    + System: Is global variable 'retournees' Equal to 2

    -> System: Set global variable 'retournees' to 3

    -> Wait: Delay 1500 ms

    -> Yellow: Set animation to "0"

    -> System: Set global variable 'retournees' to 0

    This seems to work... Duuno if it's goo, i just woke up xD <-- Edit : LMAO i guess i'm not awakened yet lol

  • Ctypes is included i Python since version 2.5.

    I installed version 2.6 and it works for me. I don't know if it'll work with latest python.

    Get it here :

    http://www.python.org/download/releases/

    Just run the installer, and it'll be ok.

    If you need win32com libraries, google it and install the one for your version of python.

  • Maybe select the attribute "center view on me", in the car properties?

  • Only got 2 winners on about 20 runs. Most of the time they can't get past N�5.

    Is it a TimeDelta problem?

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Well, i like to learn new things

    But my biggest drawback in making this game is my lack of comprehension of mathematics... i'm more a litterary/art/music person, so mathematics are ... errrrm.

    Programming is ok, as long as it doesn't involve horrible equations :\

    now, i'll just see where it will go! it sounds fun to code (somewhat simple) Enemy AI (errr? kill kill)

    Even though i'm using placeholders (Like Jennifer From clock tower haha) for graphics, maybe i should some screenies sometime? I don't know...

  • MMM it's true i never use IE lol i'll try to install the ie plugin.

    How come i didn't think about this? I even installed this plugin for a client (via logmein) ... this week !

    EDIT : great ! Works like a charm

    I can finally get rid of mediator 8 !

    Thank you

  • Nice mouse testing game