Jump to content
UBot Underground

[Info] Per Project Plugin Settings


Recommended Posts

Hello.

 

I'm working on a lot of different Ubot projects. And I use different plugins for each project.

It's always a pain in the a... to manually configure / enable / disable the correct plugins.

 

I now store ubot options.xml file with the righ plugin settings in my source code folder. Besides my .ubot file.

 

And I have two small scripts who copy the options.xml to the ubot data folder and then launch ubot studio with my source code.

 

One to launch V4

 

echo off
xcopy ".\options.xml" "%appdata%\UBot Studio\"  /y
start "Windowtitle" "C:\Program Files (x86)\UBot Studio4\UBot Studio.exe" "F:\Ubot\!Bots\test\test.ubot"
 
 
And another one to launch V5
 
echo off
xcopy ".\options.xml" "%appdata%\UBot Studio\"  /y
start "WindowTitle" "C:\Program Files (x86)\UBot Studio 5\UBot Studio.exe" "F:\Ubot\!Bots\test\test.ubot"
 
 
 
Now when you launch Ubot Studio, you always have the correct plugin settings.
 
 
Maybe this helps someone. 
 
Have a nice day.
Dan
Edited by dan
  • Like 1
Link to post
Share on other sites

Dude that rocks,

 

I can't believe they have not done this since day one.

 

Ubot knows that the plugin is not there so why can't Ubot pre-load it? I mean if plugin exist use it!!

 

Also have suggested loading plugins on demand instead of all at once, It's ridiculous to have all , especially when compiling.

 

Definitely thinking outside the box man, keep it up.

 

TC

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...