Server Help Forum Index Server Help
Community forums for Subgame, ASSS, and bots
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   StatisticsStatistics   RegisterRegister 
 ProfileProfile   Login to check your private messagesLogin to check your private messages   LoginLogin (SSL) 

Server Help | ASSS Wiki (0) | Shanky.com
Cannot load plugin..
Goto page 1, 2  Next
 
Post new topic   Reply to topic Printable version
 View previous topic  How...do i do THAT? Post :: Post Loading dll  View next topic  
Author Message
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Sun Feb 20, 2005 1:25 pm    Post subject: Cannot load plugin.. Reply to topic Reply with quote

Solid_Fire> !load rankbot.dll
BB-Bot> I was unable to load the plugin you requested
Solid_Fire> !load rankbot
BB-Bot> I was unable to load the plugin you requested
Solid_Fire> !load rank.dll
BB-Bot> I was unable to load the plugin you requested
Solid_Fire> !load rank
BB-Bot> I was unable to load the plugin you requested

Anyone know why it does that when i try to load the plugin for my bot? I dont understand why it does this...
_________________
Unknown Webmaster, Confused Game Player
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
CypherJF
I gargle nitroglycerin


Gender:Gender:Male
Joined: Aug 14 2003
Posts: 2582
Location: USA
Offline

PostPosted: Sun Feb 20, 2005 1:47 pm    Post subject: Reply to topic Reply with quote

Well, it seems that you don't have the file in the same folder as your mervbot.exe

Don't use .dll on the end of the plugin when !loading - it's simply:

!load plugin-name

!load 8ball
!load rampage

etc.
_________________
Performance is often the art of cheating carefully. - James Gosling
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Sun Feb 20, 2005 2:44 pm    Post subject: Reply to topic Reply with quote

it still doesnt work. is in the mervbot folder.. the folder is called BB-Bots..do i have to rename it or something?
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
CypherJF
I gargle nitroglycerin


Gender:Gender:Male
Joined: Aug 14 2003
Posts: 2582
Location: USA
Offline

PostPosted: Sun Feb 20, 2005 2:51 pm    Post subject: Reply to topic Reply with quote

CypherJF wrote:
Well, it seems that you don't have the file in the same folder as your mervbot.exe


i.e.: Put the .DLL in the same folder as MervBot.exe.
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Sun Feb 20, 2005 2:56 pm    Post subject: Reply to topic Reply with quote

it is in there, still wont load it.
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
D1st0rt
Miss Directed Wannabe


Age:37
Gender:Gender:Male
Joined: Aug 31 2003
Posts: 2247
Location: Blacksburg, VA
Offline

PostPosted: Sun Feb 20, 2005 7:30 pm    Post subject: Reply to topic Reply with quote

Are you using the MERVBot_Debug.exe? If so, does that say anything additional?
_________________

Back to top
View users profile Send private message Add User to Ignore List Visit posters website
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 3:12 am    Post subject: Reply to topic Reply with quote

nope.. just says unable to load plugin... its gettin frustating lol
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Gravitron
VIE Vet


Age:43
Gender:Gender:Male
Joined: Aug 02 2002
Posts: 993
Location: Israel
Offline

PostPosted: Mon Feb 21, 2005 4:43 am    Post subject: Reply to topic Reply with quote

There's a "bot questions" forum, you know...

(stupid poster, even stupidier staff)
Back to top
View users profile Send private message Add User to Ignore List Visit posters website AIM Address Yahoo Messenger MSN Messenger
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 5:52 am    Post subject: Reply to topic Reply with quote

you know that this is a general question right? thats what i asked, i didnt think it was somethin so serious it had to be in bot questions....
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Doggeti
Server Help Squatter


Age:40
Gender:Gender:Male
Joined: Jan 12 2003
Posts: 297
Location: Germany
Offline

PostPosted: Mon Feb 21, 2005 6:47 am    Post subject: Reply to topic Reply with quote

You have problems loading a dll into MERVBot.

Who else can see a reason to put it in 'Bot Questions'? tongue.gif
_________________
Expect the worst but hope for the best.
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address
Solo Ace
Yeah, I'm in touch with reality...we correspond from time to time.


Age:37
Gender:Gender:Male
Joined: Feb 06 2004
Posts: 2583
Location: The Netherlands
Offline

PostPosted: Mon Feb 21, 2005 1:23 pm    Post subject: Reply to topic Reply with quote

If you are sure that the .dll file is in the same directory as the MERVBot's active path and you're still experiencing these problems I'd think the .dll is an invalid file type, but most likely an outdated plugin.

This is from the default source of MERVBot plugins, spawn.cpp:

Code: Show/Hide
if (major > CORE_MAJOR_VERSION)
{
   tell(makeEcho("DLL plugin cannot connect.  This plugin is out of date."));

   CONNECTION_DENIED = true;

   return;
}
else if ((major < CORE_MAJOR_VERSION) || (minor < CORE_MINOR_VERSION))
{
   tell(makeEcho("DLL plugin cannot connect.  This plugin requires the latest version of MERVBot."));

   CONNECTION_DENIED = true;

   return;
}
else
   tell(makeEcho("DLL plugin connected."));


In the MERVBot terminal you might be able to see one of these messages.
Notice: You need Misc:NoTerminal=0 in MERVBOT.INI to be able to see these debug messages.

I'm expecting you'll get one of those two error messages.

Please say so if this is what's happening, there might be a way to fix it by downgrading your MERVBot's core version.
Which core version are you currently using and what's the exact URL to the plugin archive (.zip)?
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 2:35 pm    Post subject: Reply to topic Reply with quote

well i got all the plugins i needed except rank, i dont know why that specific one wont work...
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Solo Ace
Yeah, I'm in touch with reality...we correspond from time to time.


Age:37
Gender:Gender:Male
Joined: Feb 06 2004
Posts: 2583
Location: The Netherlands
Offline

PostPosted: Mon Feb 21, 2005 2:42 pm    Post subject: Reply to topic Reply with quote

I can see you really used the information I posted, good job.
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 3:10 pm    Post subject: Reply to topic Reply with quote

im using the latest mervbot. i'v given up on loading the other plugins i need.
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Mr Ekted
Movie Geek


Gender:Gender:Male
Joined: Feb 09 2004
Posts: 1379
Offline

PostPosted: Mon Feb 21, 2005 3:31 pm    Post subject: Reply to topic Reply with quote

Newb.
_________________
4,691 irradiated haggis!
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 3:37 pm    Post subject: Reply to topic Reply with quote

No, just not enough time to do that.
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Solo Ace
Yeah, I'm in touch with reality...we correspond from time to time.


Age:37
Gender:Gender:Male
Joined: Feb 06 2004
Posts: 2583
Location: The Netherlands
Offline

PostPosted: Mon Feb 21, 2005 3:58 pm    Post subject: Reply to topic Reply with quote

Yes.

Stop being impatient then.
As if it takes hours to open MERVBOT.INI with a text editor, turn the console on, save the file and restart the bot.
Check if you see any error message while trying to load, if so, take appropriate measurements.

I gave you a good, and most likely the actual, reason for why it didn't work.
I even included a way for you to fix it.

Hm, if you keep giving up this quickly, you won't get much other things to work either.
Back to top
View users profile Send private message Add User to Ignore List
Gravitron
VIE Vet


Age:43
Gender:Gender:Male
Joined: Aug 02 2002
Posts: 993
Location: Israel
Offline

PostPosted: Mon Feb 21, 2005 4:04 pm    Post subject: Reply to topic Reply with quote

Haha Ekted.
Rock on. icon_twisted.gif
Back to top
View users profile Send private message Add User to Ignore List Visit posters website AIM Address Yahoo Messenger MSN Messenger
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 4:14 pm    Post subject: Reply to topic Reply with quote

actualy, what if i was busy with something else that doesnt have anythjing to do wih the game? did that ever come to your head?

did it ever concern you that i have a diabetic sister that needed something so she woulndt go into a coma?

think about it.
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Solo Ace
Yeah, I'm in touch with reality...we correspond from time to time.


Age:37
Gender:Gender:Male
Joined: Feb 06 2004
Posts: 2583
Location: The Netherlands
Offline

PostPosted: Mon Feb 21, 2005 4:18 pm    Post subject: Reply to topic Reply with quote

That all has nothing to do with a simple thing taking less time than making the post you just made.

I'm not asking for excuses, I did my job: trying to help you fixing your problem.
Back to top
View users profile Send private message Add User to Ignore List
Gravitron
VIE Vet


Age:43
Gender:Gender:Male
Joined: Aug 02 2002
Posts: 993
Location: Israel
Offline

PostPosted: Mon Feb 21, 2005 4:29 pm    Post subject: Reply to topic Reply with quote

I don't think Solid want or need our help anymore.
Dump this thread.
Back to top
View users profile Send private message Add User to Ignore List Visit posters website AIM Address Yahoo Messenger MSN Messenger
Purge
Episode I > Eposide III
Jar-Jar is kool


Age:35
Gender:Gender:Male
Joined: Sep 08 2004
Posts: 2019
Offline

PostPosted: Mon Feb 21, 2005 5:06 pm    Post subject: Reply to topic Reply with quote

Um...is it in your Spawns.txt? You haven't posted about that.
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 5:15 pm    Post subject: Reply to topic Reply with quote

its in there, i also did !load <plugin> ingame while in spec, and it said unable to load. i re downloaded the plugin, and still wouldnt load. i loaded invbot, alias, rampage and tried rankbot but it wouldnt load. so i think its the file.
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Solo Ace
Yeah, I'm in touch with reality...we correspond from time to time.


Age:37
Gender:Gender:Male
Joined: Feb 06 2004
Posts: 2583
Location: The Netherlands
Offline

PostPosted: Mon Feb 21, 2005 5:17 pm    Post subject: Reply to topic Reply with quote

Wtf I just told you what may be wrong, re-read my posts, and now pay attention to the text. icon_confused.gif
Back to top
View users profile Send private message Add User to Ignore List
Solid_Fire
Server Help Squatter


Age:35
Gender:Gender:Male
Joined: Dec 22 2004
Posts: 327
Location: NV. Dont stalk me..plz..
Offline

PostPosted: Mon Feb 21, 2005 5:18 pm    Post subject: Reply to topic Reply with quote

..*reads it for the 7th time...*
Back to top
View users profile Send private message Add User to Ignore List Send email AIM Address Yahoo Messenger
Display posts from previous:   
Post new topic   Reply to topic    Server Help Forum Index -> Bot Questions All times are GMT - 5 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum
View online users | View Statistics | View Ignored List


Software by php BB © php BB Group
Server Load: 110 page(s) served in previous 5 minutes.

phpBB Created this page in 0.561771 seconds : 49 queries executed (80.0%): GZIP compression disabled