blackstr's Forum Posts

  • Does behavior lag the game more or remains the same?

  • so just say i have a sprite, for example, I load 100 animation frames with 100 images with a file? or .cap?

  • I should just load my pictures from files then. thx

    Edit: I have uniquesprite plugin and loaded my pictures from files and it was good but the thing is why does it uses so much vram then loading pictures from .cap.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Okay, i have a question to ask

    Should I load my picture from the .bmp/.png file or load my picture from the .cap file.

  • Very nice Urled :D

    Is it possible to have walls and the enemy ai navigate through the path and tries NOT to shoot when the enemy ai does not see the player.

    I looked for examples but there was not one.

  • Looks like he's using Construct Classic In that case, exporting to CSV is probably still easiest, but then you read it with the binary object I think.

    Separating a line of values is like this: Item1 = GetToken(strCSVLine, 1, ","), but I'm not sure if it's 1 or 0 that is the starting item at the moment.

    I'll try using the binary object.

  • I tried it in debug mode and Destroying the UniqueSprite doesnt decreases VRAM usage

  • Is it possible to load a map editor from Tiled onto Construct?

    Here is the source Click Here!!

    Thanks!

  • thanks anyways

  • AAAAAAAA

    A.......A

    A.......A

    The text object above.

  • what type of plugin is for ascii? <img src="smileys/smiley17.gif" border="0" align="middle" /> <img src="smileys/smiley17.gif" border="0" align="middle" /> <img src="smileys/smiley17.gif" border="0" align="middle" /> <img src="smileys/smiley17.gif" border="0" align="middle" /> <img src="smileys/smiley17.gif" border="0" align="middle" />

  • Well, thanks anyways but what plugins did you use and then that whenever you run it, it saves the file to the folder and when you open it, it shows ASCII Characters and the topic that i posted.

  • well, this is what i thinking of

    AAAAAAAA

    A.......

    A.......

    ACCCCCCC

    ACCCCCCC

    AAAAAAAA

    A.....AA

    AAAAAAAA

    A = wall

    C = enemy

    . = space

    what is this called and what do i have to do to make that. <img src="smileys/smiley1.gif" border="0" align="middle" />

    i was inspired by that

  • well, when i builted a new tower, the circle is not drawn. after the tower was placed it draws a circle

  • I recently downloaded Construct v0.99.

    this is what i did to draw range

    (Mouse) = sprite

    (Towers) = family

    ('Active') = private variable

    (Canvas) = canvas

    <font color=green>

    1.(Mouse) overlapped (Towers)

    (Towers) Value ('Active') Equal to 1    

    - System: Start Loop "DrawRangeHover" 360 times

    -(Canvas) : clear to transparent

    2.Else

    -(Canvas) : clear to transparent

    </font>

    then this i put to canvas event on action

    <font color=green>

    On loop ("DrawRangeHover")

    (Mouse) overlap (Towers)

    -X1:Towers.X+cos(LoopIndex("DrawRangeHover"))*Towers[Turret>.Range -X2:Towers.Y+sin(LoopIndex("DrawRangeHover"))*Towers[Turret>.Range -X3:Towers.X+cos(LoopIndex("DrawRangeHover")+1)*Towers[Turret>.Range -X4:Towers.Y+sin(LoopIndex("DrawRangeHover")+1)*Towers[Turret>.Range Then i did "DrawRangeHover" I made another range just to check if mouse is over towers, then it shows its range 17. Is global variable 'Mode' Equal to 1     Towers: Value 'Active' equal to 1      -System: Start Loop "DrawRangePick" 360 Times then this i put to canvas event on action On Loop "DrawRangePick" Tower Value 'Active = 0' -X1: TowerBuilder.X+cos(LoopIndex("DrawRangePick"))*Towers[Turret>.Range -Y1: TowerBuilder.Y+sin(LoopIndex("DrawRangePick"))*Towers[Turret>.Range -X2: TowerBuilder.X+cos(LoopIndex("DrawRangePick")+1)*Towers[Turret>.Range -Y2: TowerBuilder.Y+sin(LoopIndex("DrawRangePick")+1)*Towers[Turret>.Range After I put this, when i run the game. When i builted a tower, it didn't work. When my tower was builted already and my mouse hovers it, it shows range. When the tower isn't build yer and i clicked one from the icons, it doesn't draw the range and left it blank. Anyone help me, thanks.