I'd like to test this out, could you please send me a PM of how I can get this all install and ready to go.![]()
I'd like to test this out, could you please send me a PM of how I can get this all install and ready to go.![]()
Agh nvm about pm just realised that the app needed times to notify 0.0 it'd only be good I you wanted it to tell you in a certain time I guess or w/e also didn't work for me :/ ohh well on to the next one...
Last edited by Swatarianess; 01-06-2012 at 09:48 PM.
I'm not a lesser Being imma Lesser demon
http://i.imgur.com/faGr0.png << First Script With Paint. Good First proggy? exp 21k/hr is ok pretty buggy

Okay I think I am ready to release. Who would like to beta-test this for me?
Very cool!
Not much activity here for a while I see... this looks like a very good idea! The idea of on the go reports is great, I wouldn't mind this at all... did you end up releasing this then Justin? If so how can I get this all ready to go on my iPhone? lol Thanks
-Brow
This would be extremely useful. But if you have Google voice SMS is free I think still. Just get a free service that can send SMS from your computer. Then read the text on the page. If the text says 'TerminateScript' then your script terminates. I don't know how that works though. Like with HTTP client could you do that without interrupting the RS script. Multithreading it? Or use the SCAR minimizable web client?
Really neat. I'd use it to notify me of random events. I'd like to see it for Android, I think most people have grown out of iPhone and moved on to Android anyways...
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."

Okay sorry for no update in awhile, been busy with work. Anyway I got an Android tablet so I will be able to test the Android out and make sure it is all working.
This WILL be released soon!
Red & Green Salamander Hunter // Construction // Gilded Altar // Major help w/ Kyles Runespan // VWB Smither // PhoenixFeathers // GemCutter // Bonfire // LRC Miner // Spell Tab Maker // ApeAtollAgility // IvyWC // RoguesCooker // Herblore // AshamanButterfly // AshamanPowerMiner // Fletcher // LividFarm
This would be real nice heh
Justin and I actually done this earlier in the week
Simba Code:procedure sendPushNotification(title, priority, botName, reason: string);
e.g.:
Simba Code:sendPushNotification('Terminated', '0', players[currentPlayer].displayName, 'Unexpected Terminate');![]()

Last edited by Justin; 11-05-2014 at 12:37 AM.
A great idea. Set this up in a few minutes. Here's a simple version, you can obviously add in a bunch of variables based on your scripts like Mayor did.
This is for iPhone, I assume everything is pretty much the same for Android.
1. Download Pushover from the App Store.
2. Register an application at https://pushover.net/apps/build (I called mine SRLClarity)
3. Get the app token and your user token, as well as your device ID (you get/create these when you download and use the app).
4. Use this code:
Simba Code:procedure notifyMyPhone(title, message: string);
const
TOKEN = '';
USER = '';
DEVICE = '';
var
c: integer;
begin
c := initializeHTTPClient(false);
postHTTPPage(c, 'http://api.pushover.net/1/messages.json', 'token=' + TOKEN + '&user=' + USER + '&device=' + DEVICE + '&title=' + title + '&message=' + message);
freeHTTPClient(c);
end;
begin
notifyMyPhone('Test Title','A test message.');
end.
Result:
![]()
Last edited by Clarity; 11-05-2014 at 01:46 AM.
Scripts: ClarityNex | ClaritySlayer | ClarityElfThief | ClarityBurialArmour | ClarityMudRunes | ClarityWells | ClarityProTables | ClarityArmadyl | ClarityHarps
ClarityDominonTower | ClarityAltar | ClarityCitadel | ClarityBarrows | ClarityEsswraith | ChampionScrollCamperTools & Extensions: OpenGL ID Highlight Tool | SRL-6 Messaging System | SRL Companion | Item DTM Generator | BBCode Converter
There are currently 1 users browsing this thread. (0 members and 1 guests)