RAW (stackable)
bind raw <flags> <keyword-mask> <proc>
procname <from> <keyword> <text>
Description: previous versions of Eggdrop required a special compile option to enable this binding, but it's now standard. The mask is checked against the keyword (either a numeric, like "368", or a keyword, like "PRIVMSG"). from will be the server name or the source user (depending on the keyword); flags are ignored. The order of the arguments is identical to the order that the IRC server sends to the bot. The pre-processing only splits it apart enough to determine the keyword. If the proc returns 1, Eggdrop will not process the line any further (this could cause your bot to behave oddly in some cases).
im really not sure on this bind raw buisness
the lines im recieving is
Code: Select all
[06:04] [@] irc-server.name.se 324 Botnick #xxx +sptinSl 8
[06:04] [@] irc-server.name.se 329 Botnick #xxx 1057019448
obviously im only interested in line "324"
so its ???
Code: Select all
bind raw flags??? 324
proc raw_modes irc.server.name.se 324 "+sptinSl *"
now im really lost

struggling with any bind calls includine a simple bind pub to create a public command to switch +S on.
flags are ignored losing me further

and i have 10 servers in my connect list, this surely will present me with further problems
and the last bit is a cause for concern :O
If the proc returns 1, Eggdrop will not process the line any further (this could cause your bot to behave oddly in some cases).