Michael Ortmann

Results 187 comments of Michael Ortmann

please make sure that the following line is in your config file before your `server add` line(s): `loadmodule server` Some config files have it not or have it commented out,...

Can repeat. scripts/1711.py: ``` from eggdrop import bind def onMessage(nick, mask, handle, channel, msg=''): pass bind("pubm", "*", "*", onMessage) ``` Bot: ``` ./eggdrop -t BotA.conf .tcl pysource scripts/1711.py ``` Sending...

btw: gdb is utf8 aware, wil try to decode it, and in this example it will print `` when it sees the 0xc3 0x00 sequence in a `char *` buf.

in `check_tcl_bind()`, where we call `trigger_bind()` we can check if `proc` is `*python`, and then do a check for valid utf8 on the string in `match`. but do we always...

instead of glib, `utility/genhash.c` could be used. the optimization of the utf stuff we currently do would collide with current freeciv design. freeciv seems to abstract away / hide all...

> stdint.h no. none of our source files directly includes it, while some already use `uint*_t` its defined / included via: `inet_aton.c` -> `main.h` -> `eggint.h` (created by configure)

src/mod/irc.mod/help/irc.help also needs updating for added ACCOUNT

> I have reverted to strerror for now, this needs a larger discussion. After discussion on IRC, here is a new fix, that keeps things stupid simple, by just printing...

Last commit resolved merge conflicts

> Why did this order need to change? for historical reasons now more popular systems ended up low in that guide. also i plan to update the guide, as i...