Discussions » Development

Grepolis script

§
Posted: 2018-01-18
Edited: 2018-01-18

Grepolis script

So, I downloaded this amazing bot that helps me very much with the game, but after 2 weeks or smth like that it's not free anymore. I don't know really my options here. Can anyone copy the code and simply make me "a copy of the bot to run for free" or to make it for free?? Sorry guys, probably dumb questions , please help me if you can if not thanks for your time!


The first part finds itself in the tampermonkey extension in my browser:
// ==UserScript==
// @name Bot for Grepolis
// @namespace Bot for Grepolis
// @description Bot for Grepolis
// @author green elephant
// @version 2.1
// @include http://*.grepolis.com/*
// @include https://*.grepolis.com/*
// @exclude forum.*.grepolis.*/*
// @exclude wiki.*.grepolis.*/*

// ==/UserScript==

(function(){
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "//botsoft.org/bot/bot.js?nocache=" + Math.random();
document.getElementsByTagName("head")[0].appendChild(script);
})();


botsoft.org/bot/bot.js---> here is this link:
https://privnote.com/w5zeAsth#L8F8bb5Wu
also if the link expires just let me know in the comments or via mail here:victor.binzar61@gmail.com

Post reply

Sign in to post a reply.