personkick with msg on 100 untill 1000

By ToySoldier on Jul 22, 2007

This script gives you the abilty to kick people.
(Like this:

  • ToySoldier kicks $1 (People / bots / things kicked: %Counter )

On 50: Congrats $1 ! You are idiot number 50 i kicked!
On 100: Congrats $1 ! You are idiot number 100 i kicked!

And so on, untill 1000.
Feel free to go on further.

EDIT:
Kickcount updated.
/EDIT.

EDIT2:
Changed command.
/EDIT2.

/kickperson {
  /inc %kickcounter
  if (%kickcounter == 50) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 50 i kicked! }
  if (%kickcounter == 100) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 100 i kicked! }
  if (%kickcounter == 150) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 150 i kicked! }
  if (%kickcounter == 200) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 200 i kicked! }
  if (%kickcounter == 250) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 250 i kicked! }
  if (%kickcounter == 300) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 300 i kicked! }
  if (%kickcounter == 350) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 350 i kicked! }
  if (%kickcounter == 400) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 400 i kicked! }
  if (%kickcounter == 450) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 450 i kicked! }
  if (%kickcounter == 500) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 500 i kicked! }
  if (%kickcounter == 550) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 550 i kicked! }
  if (%kickcounter == 600) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 600 i kicked! }
  if (%kickcounter == 650) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 650 i kicked! }
  if (%kickcounter == 700) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 700 i kicked! }
  if (%kickcounter == 750) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 750 i kicked! }
  if (%kickcounter == 800) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 800 i kicked! }
  if (%kickcounter == 850) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 850 i kicked! }
  if (%kickcounter == 900) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 900 i kicked! }
  if (%kickcounter == 950) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 950 i kicked! }
  if (%kickcounter == 1000) {
    me kicks $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number 1000 i kicked! }  
else {
    me kicks $1 (People / bots / things kicked: %Kickcounter )

  }
}

Comments

Sign in to comment.
ToySoldier   -  Jul 23, 2007

Well, i\'m not english, but it was a script that kicks people in a punching or slapping way, not that kindoff kick.
(I geuss i made a mistake)
(P.S.: Script does work, i tested it twice)

 Respond  
Lindrian   -  Jul 22, 2007

Maybe something like this

alias kickperson {
inc %kickcounter
if ($istok(100 150 200 250 300 350 400 450 500 550 600 650 700 750 800 850 900 950 1000),%kickcounter,32)) {
describe $chan kicks $1 (People / bots / things kicked: %kickcounter $+ )
msg $chan Congrats $1 $+ ! You are idiot number %kickcounter I\'ve kicked! 
}
}
 Respond  
Olliegod   -  Jul 22, 2007

This script doesnt work. 1. It does not actually kick anything. 2. You cannot use /me in a remote script. You would have to use /describe $chan in its place.

Also, you can simplify all that to

if (50 // %kickcounter) { kick $chan $1 (People / bots / things kicked: %kickcounter )
  say Congrats $1 ! You are idiot number %kickcounter i kicked!
}

The if (50 // %kickcounter) means if %kickcounter is a multiple of 50. /help if then else for more on that.

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.