Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Jane
« on: February 08, 2011, 06:54:11 pm »

So let me Clear it for new Pie's

1-Add the script above in your Remote.
2-go To your users tab and type 9999:YouNickHere
3-Press ok Then done!


Awesome script :)
Posted by: Glow
« on: February 08, 2011, 06:33:26 pm »

Code: [Select]
on 9999:TEXT:!addreact*:#: {
  if ($2 == $null || $3 == $null) { notice $nick Correct Syntax is: !reaction-add <triger/word> <reaction>
  }
  else {
    .write reaction.mrc on *:TEXT: $+ $2 $+ :#: { $3- }
    .notice $nick Reaction added successfully
    .load -rs reaction.mrc
  }
}
on 9999:TEXT:!delreact*:#: {
  if ($2 == $null) { notice $nick Correct Syntax is: !reaction-add <triger/word> <reaction>
  }
  else {
    .echo $read(reaction.mrc,w,* $+ $2 $+ *)
    .write -dl $+ $readn reaction.mrc
    .load -rs reaction.mrc
    .notice $nick Reaction removed successfully
  }
}

9999 is optional if you use 9999 in user tab.

The file gets created automaticly ;)