Do I need to do anything other than include the smart library and do that one smartsetup command (I can't remember what it is...)? I've searched the forums, but couldn't seem to find any info an setting up smart.
Do I need to do anything other than include the smart library and do that one smartsetup command (I can't remember what it is...)? I've searched the forums, but couldn't seem to find any info an setting up smart.
the smartsetup is automatically done in SetupSRL; (if you have $i/.i/$d smart)
Example:
You also get these 4 options -Code:program SMART; {$define SMART} {.include SRL/SRL.scar} begin SetupSRL; end.
You use these options like so -Code:Smart_Server //Server Number Smart_Members //True if member world Smart_Signed //True if you want signed client Smart_SuperDetail //idk??
Code:program SMART; {$define SMART} {.include SRL/SRL.scar} begin Smart_Server := 54; Smart_Members:= False; Smart_Signed := True; Smart_SuperDetail := False; SetupSRL; end.
Last edited by Dgby714; 03-06-2010 at 06:03 PM.
You don't needSCAR Code:{$define SMART}
All you need is
SCAR Code:{.include SRL/SRL/misc/SMART.scar}
{.include SRL/SRL.scar}
On top of the script and as Dgby714 said, add
SCAR Code:Smart_Server := 100; //right now it doesn't matter what this number is as SMART loads a random world...Unless you want to make SRL choose the world after SMART loads.
Smart_Members:= False;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
at the end of the script in your mainloop.
Make sure to Include SMART before SRL.
Read this guide if you don't understand
http://villavu.com/forum/showthread.php?t=48023
Thanks!
There are currently 1 users browsing this thread. (0 members and 1 guests)