rexrainbow's Forum Posts

  • delgado

    You might try to set the "Class name" to "User" to access this User (account) table, in properties table of rex_parse_itemtable plugin. After authenticated, you could read user ID by "Expression:UserID", it is equal to objectId in this table at the first field of each row.

    Now you could

    1. set the cash by "Action:Set value"

    2. set the gunlevel by "Action:Set value"

    3. set userID by "Action:Set itemID" ( userID = itemID = objectId )

    4. call "Action:Save" to save this row into parse server, "Condition:On save complete" will be triggered while saving successful.

  • Zebbi

    Call function "Waypoints.Init" (Guide event sheet) to reset the waypoints. Checking if the car had hit the last waypoint is in event 9, event sheet Car AI.

  • Zebbi

    Sine I uses private variable to sort waypoint in instance group object, and pick them in order. I could put them back and sort them again while the group is empty, i.e. car had hit the last waypoint.

  • Maybe the issue came from minify. Try request["responseText"]. BTW, this.dataJson might be wrong, try self.dataJson. Sure it needs var self=this;

  • Zebbi

    Yes, the order of waypoint is set in private variable, you might replace it by your picking method.

  • Zebbi

    Check the setting of this rex_LJpotential behavior in family CarF, sprite waypint, sprite blocker. You could copy from my sample capx.

  • This behavior only provide a "leading angle", the car controlling by using this leading angle is another issue.

    Sorry I could not help you.

  • Try Construct 3

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

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

    Try this plugin.

  • delgado

    I mean that user does not know the newest value or the field had been changed until user send a request.

    On the other hand, if user want to update a field to the newest value, it needs send request every 1 min ( or 30 seconds ) for example, then it will cost a lot of requests = money.

  • delgado

    The score read back after user send a request to server. i.e. if user does not send this request, nothing will be received.

  • Build JSON structure.

    [{"a":10,"b":20,"c":null},{"a":30,"b":40,"c":true}]

    Document, plugin and sample capx are included.

    ----

    Build XML structure

    <?xml version="1.0" encoding="UTF-8" ?><note><Date Year="2016" Month="1" Date="31" /><Author Name="Rex.Rainbow" Gender="Male" /></note>

    Document, plugin and sample capx are included.

  • cmee

    Uh, actually it is because that rex_tagtext had not supported scrolling in inline mode, only <class="xx">...</class>, sorry I had missed it.

  • It is possible to have another field in user table, you might try rex_parse_itemtable plugin.

    But parse could not send data to user if user did not do requesting.

  • xoros

    Since you had put "rex_chess behavior" under che family, you could use che.chess.LX ,instead of B2.UID2LX( che.uid ) . The chess behavior will try to find out the related board automatically.

    Replace Board.UID2xx(che.uid) to che.chess.xx , this capx will work fine.

  • Update

    rex_parse_itemtable plugin: Add a new sample capx for sorting or filtering items (which came from parse) at local.

    Sort or filter data at local

    Sample capx

    Items read from parse could be put into rex_taffydb object by "Action:Insert JSON data" (rex_taffydb) with "Expression:ItemsToJSON" ((rex_parse_itemtable). Then user could sort or filter these items at local by this rex_taffydb object.