Devil's Sanctuary
« Search Results »

Welcome Guest. Please Login or Register.
Dec 30, 2009, 12:25pm




Devil's Sanctuary
Welcome To The Devil's Sanctuary Forums.
Staff
This is the Official Devil's Sanctuary forums. Come visit the server that is affiliate to this, using the IP address: DSNB.zapto.org. We hope to get new members, to both here and the server. Remember, this is not a clan. We hope you enjoy your time on the forums. Thank you.

.

Devil's Sanctuary News

The following is still needed:

Members to register.

Better Scripts.

Authority.

This will hopefully be filled as the server/forum community grows!

We really need members and I hope you join!
+ Shinu
Forum Rules
Music
Important Notices
- You can swear, but not an extensive amount.
- You cannot flame or troll.
- No adult or R rated things can be posted.
- No spamming.
- Be nice to all members and guests.
- You can not control others.
- You can not act all powerful, or strongest.
- Please respect all Moderators and Admins.
- Respect all others. If that means they don't wish to talk to you, then don't talk to them.
- Do NOT give out any personal information of any kind.
- If you are inactive for a period of a week with less then 10 posts, you will be deleted.
- Please refrain from using chatroom talk, though abbreviations are permittable, such as:lol, atm, btw, rofl, lmao, brb, bbl, bbs, etc.





There are no important notices as of yet, expect to see some soon and keep updated.
Events
There are no events happening at the moment.

Devil's Sanctuary :: Search Results
10 Most Recent Posts10 Results Found

Result 1 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Heh. A threat to NB? Lol. (Read 575 times)
wickedfrost
New Member
*
member is offline





Joined: Dec 2008
Posts: 3
Karma: 0
 Re: Heh. A threat to NB? Lol.
« Result #1 on Jan 1, 2009, 12:30am »

|07/04/07|07:12:25|PM| Alex Muto: Load Black_Hell.exe
That's no virus. Black_Hell is one of those crappy RPGs you see every so often. =P
Link to Post - Back to Top  IP: Logged


Result 2 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Random Scripts (Read 28 times)
wickedfrost
New Member
*
member is offline





Joined: Dec 2008
Posts: 3
Karma: 0
 Random Scripts
« Result #2 on Dec 30, 2008, 12:07am »

Every few days or so, I'll give out a random script. Anyone can post their random scripts, just besure to indicate what Event it's under, and include the EndEvent.
Here's mine to begin
Event +PlayerSignOn
If $name(#source) = "[your player name here]"
/sendall "[bot name]: The server owner has arrived!"
EndIf
EndEvent
Link to Post - Back to Top  IP: Logged


Result 3 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: A beginning server's script (Read 26 times)
wickedfrost
New Member
*
member is offline





Joined: Dec 2008
Posts: 3
Karma: 0
 A beginning server's script
« Result #3 on Dec 30, 2008, 12:05am »

Copy and Paste, no credit needed, (even though I just put this together)
Pretty long, I know

Code:

//The script will work fine with the // at the beginning.
//Use the /set command once you've put these scripts in.

Event +PlayerSignOn

// Of course, put your Server's name where it says [server name]

// Now for the basics.
// There's /sendpm and /sendall.
// /sendpm sends a message to the player you specified, such as #source to send it to the person that used a command, etc
// /sendall sends a message to everybody online.
// This is a little more complex, having the changeable bot name, but it won't be too difficult.
// Quotation marks, " ", tell the script that in between these is the message.
// & are used to tell the script that the following part is outside a message.
// The $name(#source) tells the server to get the person who just logged in
/sendpm #source, $Bot & " Welcome to [server name], " & $name(#source) & "."
/sendpm #source, $Bot & " Type /commands to see the commands, and /rules to see the rules."
If $name(#source) = ""
// This above means that if a player's name is blank, the server will immediately tell everyone this:
/sendall $Bot & " A ghost tried to enter the server!"
/sendall $Bot & " This script won't let it!"
/sendpm #source, $Bot & " Your IP and SID will be posted in the chat, and you will probably be firewall banned."
/ban #source
/sendall $Bot & " Just in case you need it, here's the ghost's SID and IP."
/sendall $Bot & " SID: " & $getplayerinfo(#source,PSID)
/sendall $Bot & " IP: " & $getplayerinf(#source, IPAD)
EndEvent

Event +NewMessage

If #IsIn($message, "SCRIPT ERROR IN LINE ") = 1 AND $PNumber("[admin name]") > 0
// Just to tell you a script error, so you don't have to look at the Master Server window after every time you make new scripts.
/sendpm #PNumber("[admin name]") "*** Script error in line: " & $message
EndIf

EndEvent

Event +ChatMessage

If $message = "/set" AND $getplayerinfo(#source,PSID) = "[your SID here]"
// Your SID is acessible by right-clicking youself (if you already have auth) and clicking Control Window. SID is the Static IDentification of a player. DO NOT GIVE THIS TO OTHER PEOPLE.
/set $Bot "±Bot:"
/set #mutee
/set $targes
/set #targes
/set #demutee
/sendall "SCRIPT: Sucessfully set the variables"
/stopevent
EndIf
If $message = "/commands"
/sendpm #source, " "
// Again, type your server's name where it says [server name]
/sendpm #source, $Bot & " Here are [server name]'s commands"
/sendpm #source, " "
/sendpm #source, $Bot & " Type /time to see the time"
/sendpm #source, $Bot & " Type /rules to see the rules"
/stopevent
If $getplayerinfo(#source, AUTH) = 1
// These will show only to a person with * auth.
/sendpm #source, $Bot & " Type /sendall to send a message into the chat"
/sendpm #source, $Bot & " Type /kick to kick a person"
/sendpm #source, $Bot & " Type /mute to mute a person"
/sendpm #source, $Bot & " Type /demute to demute a person"
/stopevent
If $getplayerinfo(#source,AUTH) = 2
// These, plus the ones above will show to a person with ** auth.
/sendpm #source, $Bot & " Type /botname to change the bot's name"
/sendpm #source, $Bot & " Type /ban to ban a person"
/stopevent
EndIf
EndIf
EndIf
If $message = "/time"
// This is just for the lulz, a little addition. I'm not sure if #date is recognizeable but the script, though. =\
/sendpm #source, $Bot & " The current time is " & #time & "."
/stopevent
EndIf
If $message = "/rules"
// Add more, if needed. You can reword it, just rmember the quotation mark's importance!
// Again, change [server name] with your server's name.
/sendpm #source, $Bot & " Here are [server name]'s rules and expectations."
/sendpm #source, $Bot & " 1. No spamming"
/sendpm #source, $Bot & " NOTE: SPAM = Stupid, pointless, annoying messages."
/sendpm #source, $Bot & " 2. No flaming"
/sendpm #source, $Bot & " 3. No flooding"
// Flooding and spamming aren't the same. Spamming is repeating a message, etc so it becomes annoying. Flooding is where the person get auto-kicked for saying it too many times. This can be bypassed by several programs, however...
/sendpm #source, $Bot & " 4. No botting"
/sendpm #source, $Bot & " 5. No ghosting, we have an anti-ghost script, so don't even try!!"
/sendpm #source, $Bot & " 6. And remember, please have fun!"
/stopevent
If $getplayerinfo(#source, auth) > 0
/sendpm #source, $Bot & " Because you have auth, it is expected that you do not abuse it. If you do, you will be deauthed and kicked."
/stopevent
EndIf
EndIf
If $left($message, 9) = "/sendall " AND $getplayerinfo(#source, AUTH) > 0
// Ahh, the basic and loveable Sendall script. You might already know, but this is very close to being a script where you can temporarily change your name... try looking at Official Server's /chatas command, or ask someone with auth about it...
/sendall $right($message, #len($message) - 9)
/stopevent
EndIf

// These below were extremely hard to write, and unless you're a master, it'll be difficult to learn this.
If $Left($Message, 6) = "/Mute " AND $getplayerinfo(#source,AUTH) > 0
/Set #Mutee, #PNumber($Right($Message, #Len($Message) - 6))
If #Mutee = 0
/SendPM #Source, $Bot & " That player isn't on..."
/StopEvent
/Exit
EndIf
If $getplayerinfo(#source, AUTH) = 0
/SendPM #Source, $Bot & " You don't have enough auth"
/StopEvent
/Exit
EndIf
If #GetValue($GetPlayerInfo(#Mutee, PSID) & "\mute") = 1
/SendPM #Source, $Bot & " That player is already muted."
/StopEvent
/Exit
EndIf
/SendAll $Bot & " " & $Name(#Mutee) & " has been muted by " & $Name(#Source) & ". Any messages they send will not appear in the main chat."
/SaveValue $GetPlayerInfo(#Mutee, PSID) & "\mute", 1
/StopEvent
/Exit
EndIf
If $Left($Message, 8) = "/DeMute " AND #getplayerinfo(#source,
AUTH) > 0
/Set #Demutee, #PNumber($Right($Message, #Len($Message) - 8 ))
If #Demutee = 0
/SendPM #Source, $Bot & " That player's not on..."
/StopEvent
/Exit
EndIf
If #Demutee = #Source
/SendPM #Source, $Bot & " If you're muted, it's probably for a good reason."
/StopEvent
/Exit
EndIf
If #GetValue($GetPlayerInfo(#Demutee, PSID) & "\mute") = 0
/SendPM #Source, $Bot & " '" & $Name(#Demutee) & "' is not muted."
EndIf
If #GetValue($GetPlayerInfo(#Demutee, PSID) & "\mute") = 1
/SendAll $Bot & " " & $Name(#Demutee) & " has been demuted by " & $Name(#Source) & "."
/SaveValue $GetPlayerInfo(#Demutee, PSID) & "\mute", 0
EndIf
/StopEvent
/Exit
EndIf
If #GetValue($GetPlayerInfo(#Source, PSID) & "\mute") = 1
/StopEvent
/Exit
EndIf
If $left($message, 6) = "/kick " AND $getplayerinfo(#source, AUTH) > 0
/Set $Targes, $Right($Message,#Len($Message)-5)
/Set #Targes, #PNumber($Targes)
If $getplayerinfo(#source, AUTH) = 0
/SendPM #Source, $Bot & " You don't have the permission to kick this person. "
Else
If #Targes <> 0
/SendAll $Name(#Source) & " kicked " & $Name(#Targes) & ":"
/Kick #Targes
EndIf
EndIf
EndIf
If $Left($Message, 5) = "/Ban " AND $getplayerinfo(#source, AUTH) = 2
/Set $Targes, $Right($Message,#Len($Message)-5)
/Set #Targes, #PNumber($Targes)
If $getplayerinfo(#source,AUTH) < 2
/SendPM #Source, $Bot & " You don't have the permission to ban this person. "
Else
If #Targes <> 0
/SendAll $Name(#Source) & " banned " & $Name(#Targes) & ":"
/Ban #Targes
EndIf
EndIf
EndIf
If $Left($Message, 9) = "/BotName " AND $getplayerinfo(#source, AUTH) = 2
/Set $Bot, $Right($Message, #Len($Message) - 9) & ":"
/SendAll $Bot & " " & $Name(#Source) & " changed the bots name to " & $Bot
/StopEvent
/Exit
EndIf

EndEvent

// WickedFrost's "Beginner Scripts"
// No credit is needed.
// Don't remove the parts with the // before it, the script will work just fine. Also, look for the // messages inside the scripts, to learn more about scripting.
Link to Post - Back to Top  IP: Logged


Result 4 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Heh. A threat to NB? Lol. (Read 575 times)
hughjass
New Member
*
member is offline





Joined: Mar 2008
Posts: 1
Karma: 0
 Re: Heh. A threat to NB? Lol.
« Result #4 on Mar 15, 2008, 8:14pm »


Quote:
i m br leader of ultimet powar. i shall rape ur wife and eat ur children


I don't have a wife, or children for that matter. So you going to rape me? :-*
Link to Post - Back to Top  IP: Logged


Result 5 of 10:
Page 1 of 2 » Jump to page   Go    [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: GH3 (Read 291 times)
Shinu
Administrator
*****
Pro Pretend Ninja Skills
member is offline



The One You Can't Ignore

[aim]
[homepage]

Joined: Jul 2007
Gender: Female
Posts: 32
Location: In your pants ;D
Karma: 2
 Re: GH3
« Result #5 on Jul 21, 2007, 5:46pm »

I got GH2 and it's amazingly fun. I can't wait for GH3. =D
Link to Post - Back to Top  IP: Logged


Result 6 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Heh. A threat to NB? Lol. (Read 575 times)
Shinu
Administrator
*****
Pro Pretend Ninja Skills
member is offline



The One You Can't Ignore

[aim]
[homepage]

Joined: Jul 2007
Gender: Female
Posts: 32
Location: In your pants ;D
Karma: 2
 Re: Heh. A threat to NB? Lol.
« Result #6 on Jul 9, 2007, 4:13pm »

i m br leader of ultimet powar. i shall rape ur wife and eat ur children
Link to Post - Back to Top  IP: Logged


Result 7 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Favourite Artist/Band (Read 439 times)
Shinu
Administrator
*****
Pro Pretend Ninja Skills
member is offline



The One You Can't Ignore

[aim]
[homepage]

Joined: Jul 2007
Gender: Female
Posts: 32
Location: In your pants ;D
Karma: 2
 Re: Favourite Artist/Band
« Result #7 on Jul 9, 2007, 4:11pm »

I'm falling in love with MSI.
Link to Post - Back to Top  IP: Logged


Result 8 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Favourite Artist/Band (Read 439 times)
Tsurio Prosper
New Member
*
member is offline





Joined: Jul 2007
Gender: Male
Posts: 18
Karma: 0
 Re: Favourite Artist/Band
« Result #8 on Jul 9, 2007, 3:44pm »

Meh...Probably the only bad I can remember to say it's "favorite" is Coldplay...but I do like other people, just that I don't remember nor their band, or the title of the song .-.

I just listen to...stuff...

Oh yeah, Maximun the Hormone is good =x
Link to Post - Back to Top  IP: Logged

[image]


Result 9 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Unreal Tournament 2004 (Read 280 times)
Tsurio Prosper
New Member
*
member is offline





Joined: Jul 2007
Gender: Male
Posts: 18
Karma: 0
 Re: Unreal Tournament 2004
« Result #9 on Jul 9, 2007, 3:41pm »

I play it.Quite a lot, when I can .-.

It's really fun *HEADSHOT*, and the arsenal of weapons is BIIIIIIIIIIIIIIIIIIIG so it adds extra fun =D.Love it <3
Link to Post - Back to Top  IP: Logged

[image]


Result 10 of 10:
   [Search This Thread][Send Topic To Friend] [Print]
 AuthorTopic: Confessions of Georgia Nicolson (Read 458 times)
Tsurio Prosper
New Member
*
member is offline





Joined: Jul 2007
Gender: Male
Posts: 18
Karma: 0
 Re: Confessions of Georgia Nicolson
« Result #10 on Jul 9, 2007, 3:39pm »

Meh...I don't like "funny" nor "humorous" books <_<;
Link to Post - Back to Top  IP: Logged

[image]



Miscellaneous
CBox Rules CBox Affiliates

. Absolutely no advertising.

. Do not roleplay on the Cbox.

. Respect all members.

. No impersonating.

. Absolutely no spam.


Credits
Skin & Code: Shinu(Skin and most of the coding) and Phoenixstar(The cbox and affiliate box)



The Shadow Frontier Strom Center Hell's Flames Forums
Copyright & Disclaimer
Devil's Sanctuary is copyright of Shinu. Things posted on it are copyright to their respected owners.

Google
Webdevilssanctum.proboards.com
Click Here To Make This Board Ad-Free


This Board Hosted For FREE By ProBoards
Get Your Own Free Message Boards & Free Forums!