playMaker

Author Topic: Dreamlo integration...  (Read 2359 times)

90degreedesigns

  • Playmaker Newbie
  • *
  • Posts: 13
Dreamlo integration...
« on: December 29, 2013, 09:10:22 AM »
I was wondering if anyone has had any success using Dreamlo high score board (This one: https://www.assetstore.unity3d.com/#/content/3862 ) into Playmaker?

I have successfully used SendMessage() to send GetScores by changing this:
Code: [Select]
string highScores = "";To this:
Code: [Select]
public string highScores = "";and using Get Property to retrieve it.

But alas, that is as far as I've gotten. Plus the results I retrieve look something like this:
Quote
Test|999|0||12/29/2013 2:03:38 AM
I can remove pipes, but i'm still left with the annoying time and date, which is unneeded. I basically want something like this:
Quote
Test - 999

As if retrieving scores hasn't been hard enough, I haven't even started with sending scores  :-[

90degreedesigns

  • Playmaker Newbie
  • *
  • Posts: 13
Re: Dreamlo integration...
« Reply #1 on: December 29, 2013, 09:18:39 AM »
Oh, attached is the original leaderboard script, straight from the asset, if it helps.