Jakkle Posted November 3, 2011 Share Posted November 3, 2011 Getting this, RandomRangeG: Unknown Identifier {=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= function RR(Min, Max: Integer): Integer; Contributors: Freddy, Wanted. Description: Outputs a value within a range. Date Created: September 22nd, 2011. By Wanted Last Modification: September 22nd, 2011. By Wanted =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=} function RR(Min, Max: Integer): Integer; begin {$IFDEF NoVariance} Result := RandomRange(Min, Max); {$ELSE} Result := RandomRangeG(Min, Max, OSI_Variance); {$ENDIF} end; Quote Link to comment Share on other sites More sharing options...
Wanted Posted November 3, 2011 Share Posted November 3, 2011 (edited) You need to SVN download the latest SCAR from the the repo. 3.28 beta ... looking for link now Edit: http://svn.scar-divi.com/scar/ Edited November 3, 2011 by Wanted Quote Link to comment Share on other sites More sharing options...
Jakkle Posted November 3, 2011 Author Share Posted November 3, 2011 I have already checked with svn look Is that right ? Quote Link to comment Share on other sites More sharing options...
Wanted Posted November 3, 2011 Share Posted November 3, 2011 Yea only be sure that you are coding in scar.exe that is in that same folder scar/bin/scar.exe and that your includes are in your workplace include folder and plugins from osi/plugins are in your workplace/plugins folder. Sometimes you will accidentally find yourself coding in an older SCAR Quote Link to comment Share on other sites More sharing options...
Jakkle Posted November 3, 2011 Author Share Posted November 3, 2011 I was using 3.27 because my shortcut was going to the 3.27 exe I take it ? I have pinned 3.28 to my taskbar. Thanks for that Quote Link to comment Share on other sites More sharing options...