Yura G's Forum Posts

  • I know about gambling more than you might think.

    But again: We are out of topic, my question is "WHY?"

    Why it should be considered as other type of business model?

    The question is more philosophical than practical.

    What is the real difference between "Monthly paymant" and "Pay to play" if both businesses earn the same?

    Or even "Pay to play" in arcade game machine back to back with "Pay to play" on slot machine?

    If one is more regulated than the other, why does it mean that it should be taxed differently?

  • ...enough to keep out any indie devs or even small companies... This particular aspect is aimed at large gambling corporations.

    I disagree, Ashley.

    If you aim to charge more big corporations, do it - charge more big corporations, but it does not have to be "gambling" dependent.

    For example - it is the correct way to tax people according to the income, it is incorrect to taxt more white people than others because currently they tend to earn more.

    Are you developing gambling games for money with a gambling license?

    Currently I'm considering a development of gambling games with Construct3, but as it seams, you are making it much harder.

    In my previous words: I'm more like a poor white guy who are considering to apply for a new job but don't very convinced that the agreement is fair enough to sign it.

    Their operations and intentions of usage of Construct are different enough for us to split them as a separate category of customer.

    That is my question, how different?

  • Hello Tom, Ashley and Construct users,

    I noticed that in Construct3.net there is a "Gambling" section in "Pricing plans", and my question is - why?

    Why Gambling businesses should be considered as a different kind of businesses with different pricing?

    There is many business models of games:

    One time purchase,

    Buying in game currency, items, perks, skins and etc,

    Monthly payments,

    Expansion packs,

    Free to play + Adds,

    Free to play + Pay to win,

    Crowd-funding,

    Comercial-funding,

    Missionary/evangelist-funding,

    Campaign-funding,

    And more...

    And the only game that give you the opportunity to get back your money - is gambling.

    Basically the gambling business model is "Pay to play", and yeah, it is not game of skill, it is a game of luck where the odds are not in your favor, but the player returns back about 97% of the money back, and players know what they are going for. Some people win, some loose.

    But why from those 3% income (bruto) you want to charge more than from 100% income (bruto) of monthly payments model.

    I'm tired that gambling games considered as some kind of taboo, many players love those kinds of games and someone have to deliver them what they want. Most of you don't even know how much regulations&licensing&restrictions&pain-in-the-donkey(ass) gambling games have to pass to be published. But anyone can deliver any crappy game and charge for cookie coins.

  • Issue number two, is it okay to get two roads close to each other that it looks like highway?

  • I noticed that sometimes there are voids of grass that cannot be reached, surrounded by trees or etc.

    Those voids can cause some problems in the future, if you will spawn there enemies or chests...

    Better practice is one of two: after generation run a search for those areas and create an opening to the player to enter or mark those areas as not for spawning.

  • *sending some virtual positive vibes*

    I must admit that I was too sceptical at first

    (I still wont use the software at work, but I defenetly will use C3 for my out of work projects)

    One very kind user sent us a hamper full of sweets, so at the moment we're all running on sugar

    Tom, Ashley, I must apologize for being harsh, and if you will provide me an address, I will send you something nice too.

    (not sweets because I care about your health and the package may travel a long time from Israel)

  • It is not so easy.

    Two main approach is to use or a noise-based techniques or if you are more advanced - polygonal techniques.

    I suggest you to start with googleing about "Perlin noise"

    this noises good for map generating.

    You can can reed some useful stuff here:

    http://www.redblobgames.com/articles/no ... ction.html

    http://www.redblobgames.com/

    http://www-cs-students.stanford.edu/~am ... eneration/

    One way (and probably the most easy way) to implement it:

    *Create two dimensional array the size of your map (lets say 2000 horizontally by 1000 vertically),

    *Assign there random values (lets say from -10 to 20).

    *Smooth the surface values: the stronger the smooth you will have less islands and but more pretty shapes, if weaker - more islands, more chaotic surfaces.

    *One way to smooth the surface - make same size 2000x1000 array, and assign there values for each point as a average of a point and the 8 near points of the original array in the end copy the second array into the original, to get smoother surface - repeat the process multiple times.

    *Determine that values from -10 to 0 it is water, 0 to 10 it is land, 10 to 20 is hills.

    *Make function to show the surface of certain area.

  • First of all, Scirra, congratulations on construct 3, it works...

    But does it?

    Almost all the features that were highlighted in the dev blogs - blocked in the "free edition" and can't be tested.

    No onion skinning, no live preview, no remote preview, not even search! And the list is going on...

    We can't buy the non-free version, we could try the non-free version at 15-21 of may... But what is the point to giving the full version to participate in NewGround's contest if it will be full of untested features full with bugs. It will be such a bummer to develop a game in biggish version...

    Scirra, you don't want that the first experience of construct users will be "Frustration"

    Just some thoughts.

    Open topic...

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Yes,

    At any time you can call an action "Move to layer", it placed in the bottom section "Z Order".

  • Sorry for asking, but are you the creator of Gold Miner? Your profile picture just got me curious haha.

    , no, it is a character from the game Gold Rush, a video slot game from Anakatech/Netomedia.

    That is what I'm making for a living, in my free time I'm doing entire different kind of games.

    Gold mining theme is a strong theme for many genres of games, and for some reason Redneck'ish-Old'ish-Miner is a popular character.

  • Regarding the new feature in the blog: Audio preview (also can be done in video preview)

    Please, put a "Loop" check-box to preview (prehear) the sound how it is looping.

    In games many sounds are very short, please, add decimals of a second to see the exact lenghts and sound positions.

    Because sometimes you get sounds that are not exactly fitting the animation, you want to stretch the animations and adjust the flow to fit the sound both in lenght and timing.

  • compare 2 values

    len(textobject) < 9 add number

    The only flaw of that logic is that the user can use Ctrl+V to enter infinite amount of numbers.

    Better to use (Usefull not only for numbers):

    *TextBox: On Changed

    ->TextBox: Set text to left(self.Text,9)

    If you want only positive numbers you can use:

    *TextBox: On Changed

    ->TextBox: Set text to str(clamp(float(Self.Text), 0, 999999999))

    If you want positive whole numbers:

    *TextBox: On Changed

    ->TextBox: Set text to str(clamp(int(Self.Text), 0, 999999999))

  • Overlap at offset +1

    If you will expand your game and will have multiple objects with "sensors" - it will be hell to set them one by one.

    Better to put the kinds of objects you want to "sense" in a family and make one "Overlap at offset" condition on the family to cover all the possible future expansions.

  • [quote:2uc12zt2]The Addon Manager

    First of all Construct 3 has a brand-new Addon Manager. This lists all the addons available to the editor — both built-in and installed. It also provides a single central place to install new addons and uninstall existing ones. This makes it a lot easier to review and manage your addons!

    I have some concerns about the statement above, it raises some issues:

    • What if some developers don't want to share their addons, for example businesses with their own unique developments.
    • What if some developers don't want even to upload their addons, will they still work?
    • What about plugging for sale?
    • If it will be a "lists all the addons available" and " central place" - search is needed, in short future if will be filled with hundreds of addons.
  • What about Lenovo Yoga Tablet 3 Pro?

    Sounds very promising, ~500$, 4gb ram, 1.4 quad processor busting up to 2.4ghz, 8GB graphic processor 600MHz, 64gb storage, long live battery, android...

    Also with projector - it sound cool to play your game on the the wall while controling on your lap.