QuaziGNRLnose's Forum Posts

  • bope, i can run a playfield which is 999999999 by 999999999 and i cant put it any higher. maybe you dont have enough ram or something

  • when i try to make an effect based event construct crashes,. as the title says.

    lets say i give an a sprite the effect ADD or mask, or bumb map or wtv, and i go into event editor.

    when i try to add an action or a new condition which uses something picked from an effects tab, construct just dies and crashes.

    so i click on [mask] and then everything gets that white filter of death on it and i get a not responding window followed by a has stopped working popup.

    can someone help me? this has been a problem since i started using construct at build 94

  • for controls i just mean, is WASD? appropriate here. the controls are cramped and u cant excactly press wasd and shift easily. switch the controls 2 arrow keys and space/alt/M/N/ i use this setup in my WIP shump, it works fine. if you like i could post it in the creation topic.

    also i find the way the character moves is awkward, a person on a jet pack doesnt fly straight down, they just let off the trust, dont make your character angle would be my suggestion. just make her fly up down, without changing direction, and make left right control which way you face. if u have seeking missiles i suggest you dont need to move your body at all. try to revise your game before you start, im saying this out of experience. the last thing you want is a badly thought out engine, with bad movement after youve made the first 5 levels. its happened to me and im telling you its horrible and should be avoided at all costs. plan your movement engine first before making it, how you want it, how it should play, how comftorable, these are questions you should ask yourself, and you should never rush into anything, its tempting at first, but you dont get much good out of doing it.

  • i like it but, i dunno, the controls suck. like really badly, also, u should replace those hanging cubes with 3d boxes i think itll look way cool like that

  • nice but useless, it takes way too much power, and it seems hard to contain for a true effect

  • yah, i got it to work like that too after adding a a value to the picked lock-on, which makes it work fine with lots of instances, except there should only be 1-2 attached objects on each circle or it goes all wierd

  • just boosting this back up since none read replied yet and its a major issue for me

  • Yes, as you would expect the distance() expression uses the Pythagoras theorum as you have written. I'm sure it's working correctly, and it just returns the distance between two points - which is always positive and is unrelated to quadrants. I've used it for several things now and it works fine as far as I know!

    i dunno why but i tested it using a text(s) as a counter, and i put one text to distance(blalblabla)

    and the other too the pytho but got different results?

  • in a game I'm working on, I have essentially a light that is fading in really fast then fading out slowly. To get it to stay, I assigned it's position to always be on another object, and when it fades out all the way, spawn a new object right where it was. Works like a charm.

    well i have a light exactly like that and all it does is fade out slowly using set opactiy-1 till it reaches 0 and fades in quickly using opacity+10 till it gets to 100 both activated by a value if 1 fade out if 2 fade in, it looks perfect.

  • one thing i really hate about making 3d games, is you cant be a one man band, its just too time consuming, 2d games allow a game maker to lay down what they want get it too work, and wont take 20 yrs to look finished (texturing is a pain in the arse)

    also i dont know if some1s said this yet, but triggers are events! events are real powerful but most ppl forget that there order matters, and that causes problems. dont think of construct as a box, you can make any game you want and aren't limited by the program, even when you get into complex things you'll realise their easily adapted with a bit of thought (although this isnt good for my school work because now i think of everything as events )

    and avi would suck for a ingame objects, it looses quality and looks washed out. reneder your looping textures as a set of BMPs or PNGs, theyll look nicer that way (if they are based off a 3d model, if its a vid you got off the internet dont use it at all).

  • [quote:jxwk366c]try some 4000 year old mathematician lol

    lol, thats all i have to say

    and a trig 101 would be useful to us who learn faster than the schools can teach us

    im amazed i thought of such things! i would of been inventing the wheel in my own way !

    wow, i just realised ive understood trig all along, i just need a 101 page

  • is distance doing this? or something different entirely

    sqrt(((A.x-B.x)^2)+((A.y-B.y)^2))

    cause its returning numbers based on quadrants, does it return actual distance?, or does it return the translation amount?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • i believe that uses quadratic functions? theres an article somewhere on the forums

  • yah i guess so, im just posting this as i said for anyone who doesnt know, cause i know i didnt before i downloaded a game which had it with it.

    and analog support would be awesome, but if they were to add it it should be a bit more user friendly than mmf2s plugin, and should support xbox 360 controllers well most programs cant recognise the analog triggers, and they also read the triggers as one single axis, when its actually 2

  • what i mean here is i want an object to move in the direction of a given angle, using coordinate translations, for a custom movement, now i have been developing something similar to this but i havnt gotten everything, its basically a formula which you input an angle and it returns to you scaled values so it will still move 1pxl per second, but in the angle of the given angle, meaning 45 would return to you something like 0.7y 0.7x understand (seperately of course)? then you scale your value according to those given numbers by multiplying them by it.

    i was just wondering if this existed already, because i made this all by myself but im sure some 1700's mathematician has already done it lol. so is there a way?