Deep Bot - Twitch Streamer Assistant

Deep Bot => Help/Support => Topic started by: Streamcouple on September 03, 2014, 02:07:58 AM

Title: Donation Cheque € with OBS CLR
Post by: Streamcouple on September 03, 2014, 02:07:58 AM
I use the OBS CLR Donation Tracking and if i only get the Cheque with the $ not with the € even if i change the it to ChequeEUR.png. any chance to get the €? as CLR working?
and where do i find the top and recent donator.txt?

Thanks.
Title: Re: Donation Cheque € with OBS CLR
Post by: Dante557 on September 03, 2014, 04:07:50 AM
The option to change the image from within deepbot is a legacy option from when it used to give desktop popups. To change the cheque displayed on OBS you need to change a part of the CSS in the CLR browser for your donation layer to the following;

Code: [Select]
#donor-notification {
background-image: url("http://db.deep.sg/ChequeEUR.png") !important;
}

This should then change the image displayed to the Euro cheque.

As for the text files, these should be located in the OBS folder where you installed Deepbot.

Hope that works,
Dante557
Title: Re: Donation Cheque € with OBS CLR
Post by: Streamcouple on September 03, 2014, 06:07:49 AM
is there any possiblity to get the formatting like  Recent Donor, Message? i just see 2 seperate txt files. :D. thx your css worked
Title: Re: Donation Cheque € with OBS CLR
Post by: Dante557 on September 03, 2014, 09:15:13 AM
From the files I'm seeing in the OBS folder you should be able to do this from within OBS itself. If you have "LastDonor.txt" and "LastDonorMsg.txt" on separate layers you should be able to arrange and organise them accordingly. This appears the be the only way you can currently do this.
Title: Re: Donation Cheque € with OBS CLR
Post by: Streamcouple on September 11, 2014, 12:34:57 AM
Thank you very much so far. i just have one last problem. everytime i start obs again. the DonationTracker is reseted and links to OBS. i just added the CSS code on a new line after the last {
not sure why the link and the resoultion resets all the time? :( any ideas?
Title: Re: Donation Cheque € with OBS CLR
Post by: Dante557 on September 11, 2014, 12:52:26 AM
Now that's my bad and I apologise. For whatever bizarre reason CLR Browser will reset any CSS that contains "" on start-up. I'm not sure why it actually does this but it's not good to say the least. For the code I put above, Replace the " with ' as follows

Code: [Select]
#donor-notification {
background-image: url('http://db.deep.sg/ChequeEUR.png') !important;
}

After that it shouldn't reset anymore (hopefully)
Title: Re: Donation Cheque € with OBS CLR
Post by: Streamcouple on September 12, 2014, 01:59:51 AM
works :) tyvm