Advertisement
Eeems

Untitled

Jul 12th, 2011
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Plugins[] = {
  2.     info:{
  3.         pluginName = "OnJoin Example",
  4.         pluginVersion = "0.01",
  5.         minOmnomIRCVersion = "2.2"
  6.     },
  7.     join: function(){
  8.         alert(name1 + " has joined " + channel);!
  9.         return PLUGIN_CONTINUE;
  10.     },
  11.     options: function(){
  12.         document.write('<a href="#" onclick="DoThis();">Option!</a><br/>');
  13.     }
  14. }
  15. function DoThis(){
  16.     alert("You clicked my option!");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement