trying the new version, the problems above seem to be related to not having rrpath in the ratingsconfig.ini
if i remove the path i get 100%cpu
if i add the path everything works as before (which was great)
Ive used this plugin for a while and i love it, the only problem seems to be the hardcoding of various paths.
Exec.exe will tell you the value of anything located in RR.ini
there is also code in the RRSDK autoit examples that show how to pull data from RR from your script.
@scriptdir used inside of autoit scripts will let you use relative paths inside your scripts, so if you want to save data to a file that is located in the same dir as your scripts or any sub dir.
example: This script below is one of many that i have that does a simply file copy using no full paths to any of the files.
Code:
FileChangeDir(@ScriptDir)
FileCopy("ALT\NO ART NO LOGO sv\*.skin", @WorkingDir, 1)
first line sets the working path to whatever dir the script is being run from.
You can use that line in all your ratings scripts and you can change
IniWrite("C:\Program Files\Road Runner\Ratings\ratingsconfig.ini","ratings","rated ","1")
to
IniWrite("ratingsconfig.ini","ratings","rated","1" )
i believe the best thing to do is remove all fullpaths to any file referenced in the scripts.
if you dont have the time right now and you dont mind me putting my dirty fingers in your pudding, i can do it and send it to you?
Bookmarks