Jump to content

sugarboy

Members
  • Posts

    42
  • Joined

  • Last visited

About sugarboy

  • Birthday 09/11/1986

Profile Information

  • Gender
    Male
  • Location
    North Carolina
  • Country
    United States

sugarboy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks mate. That did the trick.
  2. I have been playing around today with sockets, just to build up some experience with them before I move on to something else so I set up a xml document on my web server with a few lines of code. Then socket than retrieves the information from within that document and displays them like such. (Just some random values Lol.)What I am trying to do is make the values like Newport, Electro/House, & Jager align with each other. So it would look a more organized I guess you would say. Kinda like this I tried inserting extra spaces between the static text of the echo and the variable(which would be newport, electro/house, & Jager) but that doesn't seem to work much. Can anyone suggest to me a possible way to achieve this? I would greatly appreciate it. Also if it helps this is basically what I am using for the echo. if ($regex(%temp,/<cigarettes>(.*)</cigarettes>/)) { echo -a Cigarettes: $regml(1) }
  3. d33j4y, I greatly appreciate this! These are exactly the wavs I was looking for. Also, wow very nice response time
  4. I have queried several keywords both here, on Google, and other search engines, but I couldn't seem to find a collection of the .wav files for the sounds of MSN Chat from back in the day. Is there any chance that someone is still hanging on to these and would be willing to share them?
  5. Whats the basic command to write a variable in the variables tab. Not manually like through a dialog
  6. On, Sorry if this isn't in the right category but i figured since I have a ircd server and this relates to a script that if for that server i should post here. Okay anyways to the question. I am writing a basic, yet simple script for my server. I thought the idea of having it display a message upon connection to the server. Not a /motd but just a simple echo kinda like. on *:connect:{ .echo You are connected to bleh bleh server } Is this possible? If so could someone please help?
  7. im not exactly sure, its just like msn but ermm. I just cant figure out why the remotes arent working the regular on *:text: ones do, but even when i add access to user it gives me /auser insuff parameters and i fixed that and now the access remotes dont work
  8. i cant figure out why these arent working need a second persons view for mistakes on owneraccess:text:!own:#:{ /mode # +q $nick } on owneraccess:text:!deown:#:{ /mode # -q $nick } on owneraccess:text:!own*:#:{ /mode # +q $2- } on owneraccess:text:!deown*:#:{ /mode # +q $2- } on owneraccess:text:!host:#:{ /mode # +o $nick } on owneraccess:text:!dehost:#:{ /mode # -o $nick } on owneraccess:text:!host*:#:{ /mode # +o $2- } on owneraccess:text:!dehost*:#:{ /mode # +o $2- } on owneraccess:text:+m:#:{ /mode # +m | /amsg Moderated Room is now enabled. } on owneraccess:text:-m:#:{ /mode # -m | /amsg Moderated Room is now disabled. } on owneraccess:text:+i:#:{ /mode # +i | /amsg Invitation Only is now enabled. } on owneraccess:text:-i:#:{ /mode # -i | /amsg Invitation Only is now disabled. } on owneraccess:text:+w:#:{ /mode # +w | /amsg No Whispers is now enabled. } on owneraccess:text:-w:#:{ /mode # -w | /amsg No Whispers is now disabled. } on owneraccess:text:+W:#:{ /mode # +W | /amsg No Guest Whispers is now enabled. } on owneraccess:text:-W:#:{ /mode # -W | /amsg No Guest Whispers is now disabled. } on owneraccess:text:+h:#:{ /mode # +h | /amsg Hidden Room is now enabled. } on owneraccess:text:-h:#:{ /mode # -h | /amsg Hidden Room is now disabled. } on owneraccess:text:+S:#:{ /mode # +S | /amsg Guest Auditorium is now enabled. } on owneraccess:text:-S:#:{ /mode # -S | /amsg Guest Auditorium is now disabled. } on owneraccess:text:+u:#:{ /mode # +u | /amsg Knock is now enabled. } on owneraccess:text:-u:#:{ /mode # -u | /amsg Knock is now disabled. } on owneraccess:text:+a:#:{ /mode # +a | /amsg Authenticated Clients Only is now enabled. } on owneraccess:text:-a:#:{ /mode # -a | /amsg Authenticated Clients Only is now disabled. } on owneraccess:text:!ut:#:{ /amsg Uptime: $duration($calc($ticks / 1000)) $+ $c(1) } on owneraccess:text:!level:#:{ /amsg $nick is currently on owner access level. } on owneraccess:text:!stats:#:{ /msg $active Room Stats | /amsg Your nick is $nick | /amsg %Roomname The Roomname is: $active | /amsg %Roomname The room modes are: $chan($active).mode | /msg # %Roomname The Topic is: $chan($active).topic | /amsg %Roomname On join message is: $onjoin | /amsg %Roomname The Time is: $time(h:nn:ss tt) | /amsg %Roomname The Date is: $date(ddd/d/mmm/yyyy) | /amsg %Roomname Owners: $nick(#,0,q) | /amsg %Roomname Hosts: $nick($active,0,o) | /amsg %Roomname Total Users: $nick($active,0) | /amsg %Roomname Server : $server } on owneraccess:text:!cb:#:{ access $active clear deny | /amsg Bans Cleared. } on owneraccess:text:!topic*:#:{ /topic # $2- } on owneraccess:text:!spec*:#:{ /mode # +m $2- | /amsg $2-s now a spectator. } on owneraccess:text:!despec*:#:{ /mode # -m $2- | /amsg $2- is now a spectator. } on owneraccess:text:!kick*:#:{ set %anspmsl $rand(1,9) if (%anspmsl == 1) { /kick # $2- Goodbye. } if (%anspmsl == 2) { /kick # $2- You have violated One of the room rules. } if (%anspmsl == 3) { /kick # $2- Please adjust your behavior before you return. Thank you. } if (%anspmsl == 4) { /kick # $2- You may return when your attitude changes. } if (%anspmsl == 5) { /kick # $2- Please mind your manners. } if (%anspmsl == 6) { /kick # $2- The room staff have decidesed that you have violoated policy. } if (%anspmsl == 7) { /kick # $2- Return when you can be polite. } if (%anspmsl == 8) { /kick # $2- When you can act in a appropiate manner you may return. } if (%anspmsl == 9) { /kick # $2- $nick thinks you need to behavior yourself. } } on hostaccess:text:!host:#:{ /mode # +o $nick } on hostaccess:text:!dehost:#:{ /mode # -o $nick } on hostaccess:text:!host*:#:{ /mode # +o $2- } on hostaccess:text:!dehost*:#:{ /mode # +o $2- } on hostaccess:text:!ut:#:{ /amsg Uptime: $duration($calc($ticks / 1000)) $+ $c(1) } on hostaccess:text:!level:#:{ /amsg $nick is currently on host access level. } on hostaccess:text:!topic*:#:{ /topic # $2- } on hostaccess:text:!spec*:#:{ /mode # +m $2- | /amsg $2-s now a spectator. } on hostaccess:text:!despec*:#:{ /mode # -m $2- | /amsg $2- is now a spectator. } on hostaccess:text:!kick*:#:{ set %anspmsl $rand(1,9) if (%anspmsl == 1) { /kick # $2- Goodbye. } if (%anspmsl == 2) { /kick # $2- You have violated One of the room rules. } if (%anspmsl == 3) { /kick # $2- Please adjust your behavior before you return. Thank you. } if (%anspmsl == 4) { /kick # $2- You may return when your attitude changes. } if (%anspmsl == 5) { /kick # $2- Please mind your manners. } if (%anspmsl == 6) { /kick # $2- The room staff have decidesed that you have violoated policy. } if (%anspmsl == 7) { /kick # $2- Return when you can be polite. } if (%anspmsl == 8) { /kick # $2- When you can act in a appropiate manner you may return. } if (%anspmsl == 9) { /kick # $2- $nick thinks you need to behavior yourself. } } on *:text:!say*:#:{ /amsg $nick told me to say $2- } menu nicklist { Remotes Access .Owner Access ..add: .auser owneraccess *!* $+ $$ial($$1 $+ *,1).addr $msn.decode($$1) | /mode # +q $$1 ..remove: .ruser owneraccess *! $+ $$ial($$1 $+ *,1).addr | /mode # -q $$1 .host ..add:{ .auser hostaccess *! $+ $$ial($$1 $+ *,1).addr $msn.decode($$1) | /mode # +o $$1 } ..remove:{ .ruser hostaccess *! $+ $$ial($$1 $+ *,1).addr | /mode # -o $$1 } }
×
×
  • Create New...