Author Topic: Donation Cheque € with OBS CLR  (Read 2184 times)

0 Members and 1 Guest are viewing this topic.

Streamcouple

  • Youngling
  • *
  • Posts: 21
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Streamcouple
Donation Cheque € with OBS CLR
« 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.

Dante557

  • Advisor
  • Councilor
  • **
  • Posts: 555
  • Karma: +26/-0
  • Sometimes Helpful, Sometimes Not :D
    • View Profile
    • My Twitch Page
  • Twitch Name: Dante557
Re: Donation Cheque € with OBS CLR
« Reply #1 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
If you need to get through to me you can try to contact me on Twitter @ http://www.twitter.com/dante556

Streamcouple

  • Youngling
  • *
  • Posts: 21
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Streamcouple
Re: Donation Cheque € with OBS CLR
« Reply #2 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

Dante557

  • Advisor
  • Councilor
  • **
  • Posts: 555
  • Karma: +26/-0
  • Sometimes Helpful, Sometimes Not :D
    • View Profile
    • My Twitch Page
  • Twitch Name: Dante557
Re: Donation Cheque € with OBS CLR
« Reply #3 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.
If you need to get through to me you can try to contact me on Twitter @ http://www.twitter.com/dante556

Streamcouple

  • Youngling
  • *
  • Posts: 21
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Streamcouple
Re: Donation Cheque € with OBS CLR
« Reply #4 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?

Dante557

  • Advisor
  • Councilor
  • **
  • Posts: 555
  • Karma: +26/-0
  • Sometimes Helpful, Sometimes Not :D
    • View Profile
    • My Twitch Page
  • Twitch Name: Dante557
Re: Donation Cheque € with OBS CLR
« Reply #5 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)
If you need to get through to me you can try to contact me on Twitter @ http://www.twitter.com/dante556

Streamcouple

  • Youngling
  • *
  • Posts: 21
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Streamcouple
Re: Donation Cheque € with OBS CLR
« Reply #6 on: September 12, 2014, 01:59:51 AM »
works :) tyvm