I just found out we have the SMS utility!
i was wondering how do i add it in my script , i totally forgot how I use to do it with the old SRL stats system!
Cheerz! <3
Printable View
I just found out we have the SMS utility!
i was wondering how do i add it in my script , i totally forgot how I use to do it with the old SRL stats system!
Cheerz! <3
look in this thread here ;)
~BraK
simplest and easiest way
include
{$i srl/srl/misc\stats.scar}
and use
Stats_SendReport;
to send
~shut
im getting this error:
LINE:Code:[Error] (610:12): Internal error (20) at line 609
Simba Code:Stats_Link := 'http://scriptmanager.freehostia.com/submit.php';
My Script, i used icefire's tut, he said use:
Simba Code:SetUpSRL;
Stats_Link := 'http://scriptmanager.freehostia.com/submit.php';
Stats_ScriptID := '0'; //SCRIPT ID # HERE!
Stats_UserID := YourStatsUserID;
Stats_Password := YourStatsPass;
SRLRandomsReport;
Stats_SendReport;
Stats_ManageAccounts;
my script:
Simba Code:begin
ClearDebug;
ClearReport;
Smart_Server := 17;
Smart_Members := false;
Smart_Signed := true;
Smart_SuperDetail := false;
SetupSRL;
Stats_Link := 'http://scriptmanager.freehostia.com/submit.php';
Stats_ScriptID := '73'; //SCRIPT ID # HERE!
Stats_UserID := YourStatsUserID;
Stats_Password := YourStatsPass;
SRLRandomsReport;
Stats_SendReport;
Stats_ManageAccounts;
try this
Simba Code:begin
ClearDebug;
ClearReport;
Smart_Server := 17;
Smart_Members := false;
Smart_Signed := true;
Smart_SuperDetail := false;
SetupSRL;
Stats_ScriptID := '73'; //SCRIPT ID # HERE!
Stats_UserID := YourStatsUserID;
Stats_Password := YourStatsPass;
SRLRandomsReport;
Stats_SendReport;
Stats_ManageAccounts;
~shut