Raised This Month: $ Target: $400
 0% 

Showing results 1 to 25 of 97
Search took 0.01 seconds.
Search: Posts Made By: naeo
Forum: Approved Plugins 02-17-2010, 14:50
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

Good job taki.
The first option seems like a good solution.

It's pretty easy to strip the " " characters.
Just do something like this:
if(strlen(message)>1)
{...
Forum: Approved Plugins 01-07-2010, 00:05
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

@crixu:
read the howto.
I don't have the time to explain this over and over again.
I realise this is a hard plugin to configure compared to others. The reason for that is because I never intended...
Forum: Approved Plugins 11-23-2009, 18:13
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

I have no idea why using a bind to say something would cause such behavior - But it's not really a big problem is it?
I'm leaving it as is as long as regular chat works.

If you find a solution to...
Forum: Approved Plugins 11-20-2009, 07:42
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

I'm not sure why the plugin is acting that way.
I have two ideas:
1. You made some modifications that is not working out.
2. Another plugin is interfering with this one.

If you did not make any...
Forum: Approved Plugins 10-12-2009, 19:26
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

@tripc - read around, I think I read dynamic array sizing was implemented sometime between when I stopped coding, and now.







You messed up your config!
Forum: Approved Plugins 10-02-2009, 04:39
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

try something like this.
new channames[MAX_CHANNELS][MAX_LEN];
store names+channels like this:"#chan name1 name2 name3"
Remember to be careful not to write outside of the buffers.

You will have...
Forum: Approved Plugins 10-01-2009, 15:28
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

Personally I would use the names method, then update nicks whenever someone join\quit\part\kick\nick(And others I may have forgotten)
But as I said - you will have to add a whole lot of new code to...
Forum: Approved Plugins 09-21-2009, 13:19
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

There is no obvious errors in that part of the config that would stop the bot from joining your channel.

make sure it is allowed to join the channel.
Is it banned? invite only? key? channel full?...
Forum: Approved Plugins 09-21-2009, 07:18
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

No. the bot is designed to not know who is in channel.
Making the bot understand who is is channel is a big task.
However if you want to try to implement it yourself, have a look here:...
Forum: Approved Plugins 08-20-2009, 03:38
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

Obiwan: I will not help you make more changes. You should be able to figure out how to do it yourself. The plugin was made to be easily customizable, so have fun :-)

puttsmobiles: irc_secchan....
Forum: Approved Plugins 08-19-2009, 08:49
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

Look up mirc colorcodes and add them in config where needed.

Look at @players function.. That will display all the info you need.

About adding ip on join\quit: Just do the same changes as I...
Forum: Approved Plugins 08-18-2009, 14:46
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

You didnt add this in both functions:
new ip[50];get_user_ip(id,ip,50,1);

Re-read my last post.
Forum: Approved Plugins 08-18-2009, 13:15
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

I wont upload a new version but you can easily make the changes.
This is what you do:

Open up nirc.sma with your favorite editor(amxx-studio work well, but notepad will do)

Find the line that...
Forum: Approved Plugins 06-26-2009, 17:18
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

all chat is sent to irc unless specified otherwise.
if you do not want all the chatter comment this out:
#define IRC_SHOWSAY
#define IRC_SHOWTEAMSAY

Then set up the nword plugin to react to...
Forum: Approved Plugins 06-26-2009, 09:45
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

this is not mirc. you need to use the raw irc commands.

"PRIVMSG [email protected] :AUTH auth pass",
"MODE botnick +x"

replace auth, pass and botnick.
Forum: Approved Plugins 04-13-2009, 04:53
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

I am glad you got it working.
My only point was that you put wrong info in the config,. you put name@host - it were expecting only host - Because checking name is only necessary when ident is...
Forum: Approved Plugins 04-12-2009, 04:32
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

It works just as intended - host(NOT mask) decides if a user is admin.

Explain what you did, and why please. If I like the change I might update plugin with it.
Forum: Approved Plugins 04-09-2009, 17:33
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

I have not recieved a pm from you.

And you did not have to change code to fix that - you simply put wrong info in irc_hosts.
Forum: Approved Plugins 04-09-2009, 10:53
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

Yes. Your host
host comes AFTER '@'
Look at the other ones.
Forum: Approved Plugins 04-08-2009, 08:42
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

The bot requires you to have a static host - No way around it.

I suggest you check to see if the server offers authing and usermode +x - Read on theire site, or ask in #help
Forum: Approved Plugins 04-08-2009, 07:47
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

It works.
Line 188 and line 189 has two defines named IRC_DEBUG and IRC_DEBUG2
Uncomment them to debug connection problems.
If all you changed in the config was what you wrote, you are not done...
Forum: Approved Plugins 04-08-2009, 06:29
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

This is not old at all
Try enabling debug in the config (Uncomment the #defines), then recompile and run again.
Look at the messages in server console.
After that update config with this as...
Forum: Approved Plugins 04-07-2009, 15:49
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

whois yourself on irc and paste info here, also post the admin section here (irc_names,irc_steamids,irc_hosts,irc_flags) if you have changed anything.
Forum: Approved Plugins 04-07-2009, 10:33
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

I do know how - It just doesent make sense.

It would mean adding parsing for join,part,quit,nick and whois messages.

You would also have to store the information about who is currently in the...
Forum: Approved Plugins 04-07-2009, 09:14
Replies: 147
Views: 63,927
Posted By naeo
Re: nIRC - An AMXX irc-bot

This is probably not a good base for a gather plugin.

This bot does not remember nicks,hosts(or auth) simply because it does not need to know who is in the channel.
It only needs to know wich...
Showing results 1 to 25 of 97

 
Forum Jump

All times are GMT -4. The time now is 11:02.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode