Missing required fields
Posted by lamalamalama Wed 28th Feb 2007 22:38 - Syntax is Java - 248 views
Download | New Post | Modify | Hide line numbers
Description:
fix it cock

  1. function OnEvent_Initialize(MessengerStart)
  2. {
  3. }
  4. var maxchars = 100;//Edit the maximum number of charaters here
  5. function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
  6. if(Message.length >= maxchars)
  7. Message = "I am stupid, and am trying to spam you";
  8. return Message;
  9. }
  10. function OnEvent_Uninitialize(MessengerExit)
  11. {
  12. }
  13.  

PermaLink to this entry https://pastebin.co.uk/11183
Posted by lamalamalama Wed 28th Feb 2007 22:38 - Syntax is Java - 248 views
Download | New Post | Modify | Hide line numbers

 

Comments: 0