tolyaba Posted February 16, 2012 Share Posted February 16, 2012 Hello Is there any reason that scar wont use any mouse command in lobby window ????(when in smart) im trying to make random brakes in my script and i can log out to lobby but it wont push play button like its bloked.... plz help =( Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted February 16, 2012 Share Posted February 16, 2012 More information is required here. It always a good idea to give people something to go on when asking for help. Is smart enabled (the lower left button on smart)? Can we see the code in question? Calling Login when at the lobby screen should be sufficient to log you back in. Quote Link to comment Share on other sites More sharing options...
tolyaba Posted February 16, 2012 Author Share Posted February 16, 2012 i created blank script.............. and i login to lobby and i try to make him push the !@#$ play button so frustrating... program new; {$DEFINE RS2} {$DEFINE OSI_Color_Anti_Randoms} {$DEFINE SMART} // Comment out to disable SMART {.include OSI\OSI.scar} {.include OSI\RS2\Skill\Runecrafting.scar} {.include OSI\RS2\Skill\Mining.scar} var x, y,b: integer; procedure pauze; begin Login; end; begin SetupOsi; repeat pauze; until false; end. Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted February 16, 2012 Share Posted February 16, 2012 I just tried this and it worked for me provided smart is enabled. (The bottom left button on the smart window should have the caption "Disable SMART"; If it was disabled the caption would be "Enable SMART"). I copied your script into a new window. Pressed play, received message no active players to login. Paused the script Disabled smart Manually logged in but only to the lobby screen. Enabled smart Pressed play. And it worked. Quote Link to comment Share on other sites More sharing options...
tolyaba Posted February 16, 2012 Author Share Posted February 16, 2012 i dont even get massege about declared players... omg any sugestions ? Quote Link to comment Share on other sites More sharing options...
Wanted Posted February 16, 2012 Share Posted February 16, 2012 You don't have any players defined or active. [sCAR]{$DEFINE RS2} {$I OSI\OSI.scar} begin SetUpOSI; Players[0].Name := ''; Players[0].Pass := ''; Players[0].Active := True; Login; end.[/sCAR] Quote Link to comment Share on other sites More sharing options...
tolyaba Posted February 17, 2012 Author Share Posted February 17, 2012 no idea.... my login functions just doesnt work..... tried it in smart and without smart in rs client window... nothing heapens.. maybe i have to install something again ? i have just scar installed with osi includes up to date... Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted February 17, 2012 Share Posted February 17, 2012 I don't know what to tell you. I know how frustrating it can be when it's not working for you and nobody else can recreate your error. Almost need teamviewer or something here so someone can "see" what you are seeing and try to help. Quote Link to comment Share on other sites More sharing options...
tolyaba Posted February 17, 2012 Author Share Posted February 17, 2012 nvm i try use manual login script.... btw i found out that if i start ANY script right after smart window popup and loggin into lobby - script doestn do ANYTHING even simple click om play button is too much...(also there is no red dot) but if i login into game manualy and start script that clicks on the cross->exit to lobby->wait x seconds>click on play button... it works then....(i can clearly watch red dot) no idea why... Quote Link to comment Share on other sites More sharing options...