Originally Posted By: blessing
Originally Posted By: Echosyp
I would LOVE for the bot to be able to add 1 point to new users, but not allow them to quit and re-join to keep farming 1 point over and over.

replace this code
Code:
on !*:join:#:{
  $+(.timerpoints.,#,.,$nick) 0 300 add.pts $+(#,.,$nick)
  add.pts $+(#,.,$nick)
}

with this one
Code:
on !*:join:#:{
  $+(.timerpoints.,#,.,$nick) 0 300 add.pts $+(#,.,$nick)
  if %joinfarm. [ $+ [ $+(#,.,$nick) ] ] { return }
  add.pts $+(#,.,$nick)
  var %s $calc($timer(points.,#,.,$nick).delay / 1000)
  inc $+(-u,%s) %joinfarm. [ $+ [ $+(#,.,$nick) ] ] 
}


That's not working blessing, when I start mIRC and connect it says there is to many parameters in var %s $calc($timer(points.,#,.,$nick).delay / 1000)

and they still gain the 1 point when they join.