BryceTheCoder Posted August 15, 2012 Share Posted August 15, 2012 Hii, um i use the mmouse function and obviously put in my x and y but it wont move exactly to that point. It always goes 50+ on my Y coordinate?? I have no idea why its doing this:/ Help plz? And i also tried to do the client crap, hoping that wud fix it but it didnt. I tried: [sCAR] {$DEFINE SPS} {$I GMRL\GMRL.Scar} var C: TSCARClient; begin SetupGMRL; C := GetClient; SetClient©; MMouse(56,54,0,0); wait(300); MMouse(510,34,0,0); C.Free; end. [/sCAR] Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted August 15, 2012 Share Posted August 15, 2012 (edited) Yeah there is going to be a bit of confusion on coordinates with using the OSI includes (which GMRL uses and builds on). Due to the recent RS update that added that crazy toolbar across the top OSI compensates by shifting the client area down 50 pixels. As a consequence when you are using a tool to pick coordinates (I abuse the color picker all the time for this) you then have to subtract 50 from the Y coordinate when using it in a script. A better long term strategy might be to rework the entire OSI includes to leave the client area alone and adjust all coordinates by 50. It's doable just a ton of work. And since Freddy is maintaining this out of the goodness of heart on the side atm not likely to happen. Plus I may be in minority in this opinion. Edited August 15, 2012 by Bixby Sayz Quote Link to comment Share on other sites More sharing options...
FHannes Posted August 16, 2012 Share Posted August 16, 2012 You should adjust the input area when you've selected a client in SCAR before picking the coordinates. Right-click the input area in the client info box in SCAR and add 50 pixels to the Y1 coordinate. Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted August 16, 2012 Share Posted August 16, 2012 You should adjust the input area when you've selected a client in SCAR before picking the coordinates. Right-click the input area in the client info box in SCAR and add 50 pixels to the Y1 coordinate.Crap, never thought of that. As always 3 steps ahead of the rest of us. Quote Link to comment Share on other sites More sharing options...
BryceTheCoder Posted August 16, 2012 Author Share Posted August 16, 2012 You should adjust the input area when you've selected a client in SCAR before picking the coordinates. Right-click the input area in the client info box in SCAR and add 50 pixels to the Y1 coordinate. Haha thnx Freddy that worked:) And haha he usualy is Bixby:P Quote Link to comment Share on other sites More sharing options...