-
expression to add values of 10 cells in a table?
by tatiang ·@Japster's right but if you're not wanting to do that, you could Loop over Table and add the indexed cell to a sum attribute. -
Is there a way to add a timer in milliseconds in gamesalad?
by bob loblaw ·same conditions as in the other thread to stop your player moving. eg. have an integer attribute called levelState and assign values for before starting, game on, level fail, level finish. set the rul -
Is there a way to add a timer in milliseconds in gamesalad?
by tatiang ·You'll want to make your own timer. Google custom timer gamesalad and you'll see many examples and videos. You can round the time to milliseconds attribute by using roundTo(game.attribute,3). -
Sound, Music doesn't work
by bob loblaw ·have you set the volume to the right attribute? -
How to stop a player from moving the character after finishing the level?
by Twayne2 ·Add a global attribute called whatever you want to. Say the player can move and jump only if that attribute is 0. If the player touches the gem, set that attribute to 1. -
How to teleport a player up a specific distance (or down, left right)
by tatiang ·Change attribute self.position.Y to self.position.Y+100 -
How to teleport a player up a specific distance (or down, left right)
by mypingo7 ·To make things simple, i have 2 squares. One is a player and the other is just a square platform which the player jumps on. How do i make my player teleport, say, 100 pixels up if attribute player col -
What is considered too much RAM utilization for an endless side scrolling game today?
by AlchimiaStudios ·* Reduce the usage of constrains, timers, and loops that happen often and concurrently ( this one isn't as bad as it used to be). -
How to get actor to die when squished
by CORE Game ·There are many way to do it, I can give you one which might not be the best practice but, you can constrain the player X and Y to public attributes PlayerX and PlayerY , then create 2 invisible actors -
tableSearch(game.Table, "game.Attr. Answer 1", etc. -> Can I call an attribute in tableSearch?
by tatiang ·No, it doesn't matter. If you prefer, you can just use an integer whenever you need a boolean. It can just as easily be 0 or 1. And you can use the expression 1-game.attribute to toggle the value sinc -
tableSearch(game.Table, "game.Attr. Answer 1", etc. -> Can I call an attribute in tableSearch?
by JB makin' a game ·is still false, store that value in an index-attribute rowIncorrectAnswer1 or whatever and then change the cell value of that false boolean cell to true and repeat the process, until attr.rowIncorrec -
Hurt if actor is moving...
by bob loblaw ·change attribute PlayerWidth to the width of the player actor -
Help for a Noob?
by bob loblaw ·2) ? change the image’s attribute self position x -
Hurt if actor is moving...
by tatiang ·Create a boolean attribute called game.touchingWall. Then, in the player actor, have these rules: -
How to create content (consisting of words): Words/Explanation/Category/Difficulty
by JB makin' a game ·[Case2]The alternative is picking a random row out of 5000 and changing table cell values of 10 columns and setting multiple attributes for each question answered during runtime, which should in theor -
Random Actor Question
by JB makin' a game ·game.actorDestroyed is false by default, so at the start of the game as well. And you're right, as it is, once an actor is destroyed it sets the attribute to true and keeps it like that. -
Display Text not working with table contents on Mac
by tatiang ·Make sure you're selecting the attribute (game.PlayerId) from the attribute browser menu instead of just typing in its name. -
Random Actor Question
by JB makin' a game ·There's a flaw in what I wrote, though. Because game.attribute.SpawnActor will have a decreasing value range (first 1 to 31, then 1 to 30, etc.). So just writing the rule: -
Game Almost Complete...How Do I Add Chartboost to the game iOS
by bob loblaw ·your attribute 'ShowAd' (or whatever you call it) is read as a stored value on a rewritable table, which defaults as 0 when the game is installed or reset. the value should be read from the table it i -
Game Almost Complete...How Do I Add Chartboost to the game iOS
by hzapps ·Aloha. I hope that you are having a great day. I am rounding the corner on an app for iOS and am wanting to add Chartboost ads. I have used the old apple ads years ago with game salad. But can y