ghettofleck
Member
- Joined
- Mar 31, 2010
- Messages
- 74
- Reaction score
- 0
just wondering, why does it say crips on your screenshot?
blood4lyfe
blood4lyfe

I've got the application crashing issue... and I assure you it's not my username and password. Would like to try it out but something about my gmail account appears to be an issue.
update: made a new account gmail... no luck same issue. Vista x64. Yes I have at least one unread email in my inbox as well.
Hi I'm having some problems with this pluggin, the program looks like it's running fine but even after having triple checked my email/phone number/pw it doesn't seem to work at all, here I have included a screenshot of the program running. I'm not receiving any sms nor my email getting any email when somebody whispers. Edit: I did send a sms from my phone to my email adress.
Please remove the Word Crips from the photo, that would be considered racist, friendly reminder
This is my reply. Original Message From: [email protected] Sent: Sun, 1 Aug 2010 19:41...
if (Staticreply != reply)
{
// Remove "Original Message From:" on replies
int stringSearchIndex = reply.IndexOf("Original Message From:");
string modifiedReply = reply;
if (stringSearchIndex > -1)
{
modifiedReply = modifiedReply.Substring(0,stringSearchIndex);
}
Lua.DoString("RunMacroText(\"/r " + modifiedReply + "\")");
Staticreply = reply;
slog("Whisper to: " + nameTemp);
slog(reply);
}
Please remove the Word Crips from the photo, that would be considered racist, friendly reminder
/Reads your message for a sec
.........
BAWHAHAHAHAHAHAHHAHAAAAA
/Stops laughing
/Tries to write this response
BAHAHAHHAHAAAAAAAAAAAAAAAAHHHHHAAAAAAAAAAAAAAAAAAAAHHAHHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
its a joke chill, dont like it? dont look at my stuff I really dont care much for people without humor in there lives k? k
When I reply to SMS messages using my iPhone, gmail has this whole "Original message from..." thing that they append to it (AT&T is quoting the message I guess?).
This meant that any time I replied to an SMS, the plugin would send a message like this to whoever I was replying to:
Code:This is my reply. Original Message From: [email protected] Sent: Sun, 1 Aug 2010 19:41...
I solved this problem by modifying the transfer code on line 103 of KingSmSreply.cs like so:
Code:if (Staticreply != reply) { // Remove "Original Message From:" on replies int stringSearchIndex = reply.IndexOf("Original Message From:"); string modifiedReply = reply; if (stringSearchIndex > -1) { modifiedReply = modifiedReply.Substring(0,stringSearchIndex); } Lua.DoString("RunMacroText(\"/r " + modifiedReply + "\")"); Staticreply = reply; slog("Whisper to: " + nameTemp); slog(reply); }
When I reply to SMS messages using my iPhone, gmail has this whole "Original message from..." thing that they append to it (AT&T is quoting the message I guess?).
This meant that any time I replied to an SMS, the plugin would send a message like this to whoever I was replying to:
Code:This is my reply. Original Message From: [email protected] Sent: Sun, 1 Aug 2010 19:41...
I solved this problem by modifying the transfer code on line 103 of KingSmSreply.cs like so:
Code:if (Staticreply != reply) { // Remove "Original Message From:" on replies int stringSearchIndex = reply.IndexOf("Original Message From:"); string modifiedReply = reply; if (stringSearchIndex > -1) { modifiedReply = modifiedReply.Substring(0,stringSearchIndex); } Lua.DoString("RunMacroText(\"/r " + modifiedReply + "\")"); Staticreply = reply; slog("Whisper to: " + nameTemp); slog(reply); }