Hey,
I am working with a plugin called SlotsLanuch (https://slotslaunch.com/), which provides me with 20k slot games to play on my website. you can see a live example here - https://www.lavaslotscasino.com/.
One of the configurations of this plugin is to set a global URL for the "Play for real" button that will appear in every slot game. This option is not good enough for me, I am looking to improve this feature.
What I am looking for - Main goal:
1. Be able to set a rotation weighted by percentage & location. For example:
for country US -
100% - Google.com
for Country Italy -
50% - facebook.com
30% - instegram.com
20% - fsafsa.com
Else -
80% - facebook.com
20% - fsafsa.com
* This option has to be managed by a new plugin screen with GUI and not in code or something like that. where I will be able to delete, add, edit, etc.
* You will have to find a workaround to get the country of the user.
-----------------------------------------
I am not sure if that'd help, but their support sent me this code and told me to pass it to the developer I will work with, they told me it would help him (I guess).
"
add_filter('slotsl/play_for_real_url', function( $default_url ) {
$urlRotateArray = [$default_url];
$urlRotateArray[] = 'http://www.adomain.com/offer1.html';
$urlRotateArray[] = 'http://www.adomain.com/offer2.html';
$urlRotateArray[] = 'http://www.adomain.com/offer3.html';
shuffle($urlRotateArray);
return $urlRotateArray[0];
});
"
2. For every game that I am getting I want to generate a "review" based on AI.
the review should include images from the game, and basic details, and be according template that we will set.
if we take this game for instance: https://www.lavaslotscasino.com/#!slot=22822
It is called - Buzz Thrill
and was developed by - DreamSpin
I want to generate a review like this page:
https://www.bigwinboard.com/buzz-thrill-dreamspin-slot-review/
https://hideousslots.com/slot-review/buzz-thrill/
https://www.demoslot.com/buzz-thrill-dream-spin-slot-demo.html
What I am looking for - Main goal:
Some kind of automatic task plugin that we look for games without reviews and create one for them based on the configuration and template we set. I don't want to copy text (that's bad for SEO), but I want to generate text based on data it will get \ scrap \ analyze.
* This is a new plugin and not the same as the plugin in the #1
----------------------------------------------
* The first plugin is the most important plugin for me.