This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 61 matches

by garfwen
Sun Jul 12, 2009 7:26 am
Forum: Eggdrop Help
Topic: [FIXED] glibc detected
Replies: 9
Views: 6030

That's correct.
Fixed. Thnks alot :D
by garfwen
Sat Jul 11, 2009 3:29 pm
Forum: Eggdrop Help
Topic: [FIXED] glibc detected
Replies: 9
Views: 6030

Here it goes static void rcon_socket(int idx, char *buf, int len) { char *buffer = NULL; char *bufferptr = NULL; int actualsize; struct sockaddr_in from; unsigned int fromlen; buffer = (char *) nmalloc(RCON_BUFFER_SIZE); totalexpmem += RCON_BUFFER_SIZE; actualsize = recvfrom(rconlistensock, buffer, ...
by garfwen
Sat Jul 11, 2009 3:23 pm
Forum: Eggdrop Help
Topic: [FIXED] glibc detected
Replies: 9
Views: 6030

On the rcon mod i got this on line 417:

Code: Select all

....

  if (buffer) {
    totalexpmem -= RCON_BUFFER_SIZE;
    nfree(buffer);
    buffer = NULL;
  }

....

by garfwen
Sat Jul 11, 2009 3:01 pm
Forum: Eggdrop Help
Topic: [FIXED] glibc detected
Replies: 9
Views: 6030

Well where it is: #0 0xb7fc67f2 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2 #1 0xb7d88d80 in raise () from /lib/libc.so.6 #2 0xb7d8a691 in abort () from /lib/libc.so.6 #3 0xb7dc124b in __libc_message () from /lib/libc.so.6 #4 0xb7dc90f1 in _int_free () from /lib/libc.so.6 #5 0xb7dccbc0 in free (...
by garfwen
Sat Jul 11, 2009 5:36 am
Forum: Eggdrop Help
Topic: [FIXED] glibc detected
Replies: 9
Views: 6030

[FIXED] glibc detected

Hello. I'm having this strange problem: *** glibc detected *** ./eggdrop: free(): invalid size: 0x081c7e60 *** ======= Backtrace: ========= /lib/libc.so.6[0xb7d040f1] /lib/libc.so.6(cfree+0x90)[0xb7d07bc0] ./eggdrop[0x80737f4] /home/****/server/modules/rcon.so[0xb73f19c0] ./eggdrop[0x806e85f] /lib/l...
by garfwen
Wed Jul 01, 2009 7:05 am
Forum: Scripting Help
Topic: Catch error
Replies: 2
Views: 2399

Thanks.
by garfwen
Wed Jul 01, 2009 7:04 am
Forum: Eggdrop Help
Topic: Need help (-n)
Replies: 6
Views: 5863

Need help (-n)

Hello

I just setup a eggdrop and its working wrong, i mean

./eggdrop -n config.conf (Is working, he connects do my IRC server)

if I drop the -n
./eggdrop config.conf
it does not connect!

Any idea?

Thanks,
GaRfWeN
by garfwen
Sun Jun 28, 2009 7:46 pm
Forum: Scripting Help
Topic: Catch error
Replies: 2
Views: 2399

Catch error

Hello

Code: Select all

<Eggdrop> [XX:XX] Tcl error [my_proc]: ::mysql::sel/db server: MySQL server has gone away
is there any way to catch this error? and execute something when it catches?

Thank you
GaRfWeN
by garfwen
Sun May 31, 2009 5:52 am
Forum: Scripting Help
Topic: mysql $var
Replies: 4
Views: 3397

Thank you
by garfwen
Sat May 30, 2009 9:26 am
Forum: Scripting Help
Topic: mysql $var
Replies: 4
Views: 3397

Thats not what i mean... $nick var should be on mysql like mysql output: "%nick talked with me (%host)" Eggdrop selects that from DB and sendes "%nick talked with me (%host)" i want it to send "Dude talked with me (Super!Dude@host.com)" ------------ Confusing :oops:
by garfwen
Sat May 30, 2009 5:11 am
Forum: Scripting Help
Topic: mysql $var
Replies: 4
Views: 3397

mysql $var

Hello <Dude> getmsg <Bot> Yeah its working bind msg - getmsg getmsg proc getmsg { nick host handle text } { global db set txt [lindex [lindex [::mysql::sel $db "SELECT language FROM lang WHERE cmd='works'" -list] 0] 0] putserv "privmsg $nick :$txt" } In this case txt will return ...
by garfwen
Tue May 26, 2009 12:54 pm
Forum: Script Support & Releases
Topic: Rcon Mod [HL to HL2]
Replies: 1
Views: 3855

bump
by garfwen
Thu May 07, 2009 5:22 pm
Forum: Scripting Help
Topic: To ignore command for a time specifies
Replies: 3
Views: 3998

Boas Sou Portugues, Portugal! Bem existe uma maneira relativamente facil: bind pub - .am pub_am bind pub - .save pub_save # Apos o utilizador fazer um comando o bot vai deixar de responder passado X segundos # Metes portanto aqui o tempo, em segundos, que o bot esteja calado set repeattime 120 set t...
by garfwen
Tue May 05, 2009 1:53 pm
Forum: Script Support & Releases
Topic: Rcon Mod [HL to HL2]
Replies: 1
Views: 3855

Rcon Mod [HL to HL2]

Hello! Im using RCON-MOD to contol my HL games, and now I would like to make my eggdrop working on HL2 also. What should be changed on the code? This is the .c source of the rcon.mod . /* * This module provides two TCL procedures to eggdrop: challengercon and rcon. * * challengercon syntax: * challe...
by garfwen
Tue May 05, 2009 1:29 pm
Forum: Scripting Help
Topic: Bind Server Notices
Replies: 2
Views: 2709

Code: Select all

bind notc - * myproc

proc myproc {nick host handle text} {
   putlog "$nick noticed me! (Text: $text)
}