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.

Stats.mod problems!

Discussion of Eggdrop's code and module programming in C.
Post Reply
m
mescaline
Voice
Posts: 2
Joined: Sat Apr 08, 2006 8:05 pm

Stats.mod problems!

Post by mescaline »

First of all I get this error message: [02:08] ERROR parsing parameters: missing '"'! (New Password" --), and the other problem is im the only one that can type !stat and !place, if anyone else does they get the message "sorry, I don't have any stats about you." it doesnt record any more users except me, also !top10 doesnt reply at all :( this is my config file: http://files.upl.silentwhisper.net/uplo ... s.conf.txt please help me :(
Z
Zahgurim
Voice
Posts: 2
Joined: Wed Apr 19, 2006 1:15 pm
Location: Sweden

Try this..

Post by Zahgurim »

I got the same error on my eggie.
There's something wrong with the coding in usersettings.tpl.
My guess is that it's this part:

Code: Select all

<tr><td><?slang id="</td><td> </td></tr>
<tr>
  <td><?-- "New Password" --/?><?slang id="1040"/?>: </td>
The "<?slang id=" is not closed.
Try change it to:

Code: Select all

<tr><td> </td><td> </td></tr>
<tr>
  <td><?-- "New Password" --/?><?slang id="1040"/?>: </td>
I think that should do the trick.
User avatar
spithash
Master
Posts: 248
Joined: Thu Jul 12, 2007 9:21 am
Location: Libera
Contact:

Post by spithash »

Yeah, I had the same problem which was caused by the file usersettings.tpl and I had to edit it like this:

Code: Select all

<tr><td> </td><td> </td></tr>
<tr><td><?slang id="</td><td> </td></tr>
<tr>
  <td><?-- "New Password" --/?><?slang id="1040"/?>: </td>
to this:

Code: Select all

<tr><td> </td><td> </td></tr>
<tr>
  <td><?-- "New Password" --/?><?slang id="1040"/?>: </td>
All in all, you only have to remove the 2nd line of that part.

Everything works just great now :)
Libera ##rtlsdr & ##re - Nick: spithash
Click here for troll.tcl
Post Reply