Open aboalwi opened 8 years ago
The geowelcome plugin has always give this type of error. Could you make use of the Location plugin to achieve a similar behavior (i.e: display the country of connecting players)? I don't expect a fix to come in the next few months since the project is not maintained anymore as it used to.
It's OK don't bother I'm using normal welcome plugin. Heck it's a luxury to have. Have a good day sir.
On Thu, 22 Sep 2016 10:41 am Daniele Pantaleone, notifications@github.com wrote:
The geowelcome plugin has always give this type of error. Could you make use of the Location plugin to achieve a similar behavior (i.e: display the country of connecting players)? I don't expect a fix to come in the next few months since the project is not maintained anymore as it used to.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/BigBrotherBot/big-brother-bot/issues/364#issuecomment-248833727, or mute the thread https://github.com/notifications/unsubscribe-auth/AQTiUNtyQYLWnhaB8QYodkYKviFyZ31Iks5qsjEpgaJpZM4KDlje .
I know this is 3 years too late, but for anyone having this issue have you tried adding the direct path in the geowelcome init.py file such as:
`import time import threading
import sys sys.path.insert(1, 'C:\B3\plugins\welcome')
from b3.functions import getCmd from b3.plugins.welcome import WelcomePlugin from b3.plugins.welcome import F_FIRST from b3.plugins.welcome import F_NEWB from b3.plugins.welcome import F_USER from b3.plugins.welcome import F_ANNOUNCE_FIRST from b3.plugins.welcome import F_ANNOUNCE_USER from b3.plugins.welcome import F_CUSTOM_GREETING
class GeowelcomePlugin(WelcomePlugin): `
I know this is 3 years too late, but for anyone having this issue have you tried adding the direct path in the geowelcome init.py file such as:
`import time import threading
import sys sys.path.insert(1, 'C:\B3\plugins\welcome')
from b3.functions import getCmd from b3.plugins.welcome import WelcomePlugin from b3.plugins.welcome import F_FIRST from b3.plugins.welcome import F_NEWB from b3.plugins.welcome import F_USER from b3.plugins.welcome import F_ANNOUNCE_FIRST from b3.plugins.welcome import F_ANNOUNCE_USER from b3.plugins.welcome import F_CUSTOM_GREETING
class GeowelcomePlugin(WelcomePlugin): `
Why and how should this help ?
There is a general issue because .... :
Welcome is creating the class: class WelcomePlugin(b3.plugin.Plugin)
and geowelcome is creating it to ? class GeowelcomePlugin(WelcomePlugin)
if it is a build in plugin shouldnt it be: class GeowelcomePlugin(b3.plugin.Plugin)
it trys to load "geowelcome and welcome ERROR 'Could not load plugin geowelcome' ImportError: No module named welcome
but none is creating it ........... so how the f**** should it work xD ???
uncommented geowelcome in b3.ini yet it doesn't work
b3 log file:
PS: everything else works perfectly fine it just this geowelcome thingy