
Originally Posted by
ibot_dung11
there really is no simple way atm. With the OSR it is possible but from the forums it sounds like its not completely working with all the randoms. i have not been successful in installing SMART8 after following the guides i provided and yohojos youtube vids.. lol keep getting this error: [Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(293:131): Invalid number of parameters at line 292 Compiling failed. so in time i will make them available!
F2...

hahaha. well good to hear!

im glad its working well for you. it appears just not those using smart8 :P
I was getting that too with smart8 and this is what I did to fix it
Initial
Code:
{$IFDEF SMART8}
Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '');
{$ELSE}
Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '', -1);
{$ENDIF}
Changed
Code:
{$IFDEF SMART8}
Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '', -1);
{$ELSE}
Result := SmartSpawnClient(ReplaceWrap(PluginPath, '\', '/', [rfReplaceAll]), Params[0], ',' + Params[1], 765, 503, 's', '', '', -1);
{$ENDIF}