Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-03-2007, 08:20 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
HTML tags in GuiMLTextCtrl

There are 3 variables in GuiMLTextCtrl that I'm interested in.
parsetags
allowedtags
disallowedtags

How do I use them and how do they affect eachother? What format do I use to list allowed or disallowed tags?

Do to the complete lack of sufficient documentation on the Wiki, I'm forced to pollute the forum with useless crap that could have been avoided.

God damn, what do you GSTs do all day? We've been needing decent documentation for forever.
__________________
Reply With Quote
  #2  
Old 08-03-2007, 08:49 AM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
GSTs are too busy with *** lil' Zodiac.
I had to script my own html filter because there was no documentation on them so I couldn't figure any of it out. =/
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #3  
Old 08-03-2007, 09:12 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
I don't think any of the current GSTs are fans of that wiki. Almost all of the updates now a days are from developers like myself. Of course we don't get anything for it what so ever (not even recognition) so don't look at us!
__________________
Do it with a DON!
Reply With Quote
  #4  
Old 08-03-2007, 05:59 PM
HolySheepy HolySheepy is offline
Registered User
Join Date: Apr 2007
Posts: 68
HolySheepy is on a distinguished road
Jsut tested it for about 10 mins...


parsetags is a boolean
if parsetags is true and you write <font color="red">meh</font> the "meh" will be red

if its false it will just show "<font color="red">meh</font>", so it doesnt sort it out

allowedtags and disallowedtags are comman separated lists

so basically if you set allowedtags it will set disallowedtags to all tags that arent on allowedtags
if you set disallowedtags it will set allowedtags to all tags that arent on disallowedtags

tags filetered out arent showed, so if you put font on disallowedtag and someone does <font color="red">meh</font> it will just show meh, but it wont change the color
Reply With Quote
  #5  
Old 08-03-2007, 07:26 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by HolySheepy View Post
Jsut tested it for about 10 mins...


parsetags is a boolean
if parsetags is true and you write <font color="red">meh</font> the "meh" will be red

if its false it will just show "<font color="red">meh</font>", so it doesnt sort it out

allowedtags and disallowedtags are comman separated lists

so basically if you set allowedtags it will set disallowedtags to all tags that arent on allowedtags
if you set disallowedtags it will set allowedtags to all tags that arent on disallowedtags

tags filetered out arent showed, so if you put font on disallowedtag and someone does <font color="red">meh</font> it will just show meh, but it wont change the color
Good job HolySheepy (rep++; ). I'm surprised many of the others that posted here couldn't figure that out.
__________________
Do it with a DON!
Reply With Quote
  #6  
Old 08-03-2007, 07:45 PM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
I already knew about parsetags, but I tried every way I could think of to make lists in allowedtags and disallowedtags, and it never worked...
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #7  
Old 08-03-2007, 07:51 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
I believe, allowedtags/disallowedtags is something like...
disallowedtags={"font","b"} and such.
Reply With Quote
  #8  
Old 08-03-2007, 07:57 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
I'm surprised that you couldn't tell what they did from just the names.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #9  
Old 08-03-2007, 09:18 PM
HolySheepy HolySheepy is offline
Registered User
Join Date: Apr 2007
Posts: 68
HolySheepy is on a distinguished road
Quote:
Originally Posted by DustyPorViva View Post
I believe, allowedtags/disallowedtags is something like...
disallowedtags={"font","b"} and such.
ni uts a strubg kust
its like
disallowedtags = "font,color";

edits says
uhm just tested, it works with your way too
Reply With Quote
  #10  
Old 08-03-2007, 10:35 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by HolySheepy View Post
ni uts a strubg kust
"no its a string list"

TRANSLATED!
Reply With Quote
  #11  
Old 08-03-2007, 10:46 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by zokemon
I'm surprised many of the others that posted here couldn't figure that out.
Quote:
Originally Posted by xXziroXx View Post
I'm surprised that you couldn't tell what they did from just the names.
Thats not so much the point of this thread, I could have easily figured them out in a small amount of time. The point is I shouldn't need to, the documentation should exist to people don't have to guess about ****, that wastes so much time.
__________________
Reply With Quote
  #12  
Old 08-03-2007, 11:00 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Like always, you bring *****ing to the next level -_-
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #13  
Old 08-04-2007, 01:46 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by xXziroXx View Post
Like always, you bring *****ing to the next level -_-
Thanks, I try my best.

However, it is a valid point.
__________________
Reply With Quote
  #14  
Old 08-04-2007, 02:06 AM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
Quote:
Originally Posted by Inverness View Post
However, it is a valid point.
Truth^3
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #15  
Old 08-04-2007, 02:08 AM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by coreys View Post
Truth^3
The end of the world?
Reply With Quote
  #16  
Old 08-04-2007, 02:13 AM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
Quote:
Originally Posted by Crow View Post
The end of the world?
Perhaps.
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #17  
Old 08-04-2007, 03:23 AM
zim5354 zim5354 is offline
That one guy!
zim5354's Avatar
Join Date: May 2004
Location: U.S.A
Posts: 1,122
zim5354 has a little shameless behaviour in the past
Send a message via AIM to zim5354
Quote:
Originally Posted by coreys View Post
Perhaps.
lawl orly?
Reply With Quote
  #18  
Old 08-04-2007, 03:31 AM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
ya rly
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #19  
Old 08-04-2007, 07:33 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
I don't really find it a valid point. You can kindly ask the GST or others to document these things but treating people like crap and demanding things is certainly no way to get what you want. Most learn that at least before they are 10...
__________________
Do it with a DON!
Reply With Quote
  #20  
Old 08-04-2007, 07:53 AM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
Quote:
Originally Posted by zokemon View Post
I don't really find it a valid point. You can kindly ask the GST or others to document these things but treating people like crap and demanding things is certainly no way to get what you want. Most learn that at least before they are 10...
Psh, still works for me.
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #21  
Old 08-04-2007, 12:15 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by coreys View Post
Psh, still works for me.
Shut up Vash.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #22  
Old 08-04-2007, 07:28 PM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Quote:
Originally Posted by zokemon View Post
I don't really find it a valid point. You can kindly ask the GST or others to document these things but treating people like crap and demanding things is certainly no way to get what you want. Most learn that at least before they are 10...
Your post ID started with 1337, thought you would want to know.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #23  
Old 08-04-2007, 07:48 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Tigairius View Post
Your post ID started with 1337, thought you would want to know.
__________________
Do it with a DON!
Reply With Quote
  #24  
Old 08-04-2007, 11:24 PM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
Quote:
Originally Posted by xXziroXx View Post
Shut up Vash.
Never. I'm stubborn, okay?
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
  #25  
Old 08-05-2007, 12:46 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by zokemon View Post
I don't really find it a valid point. You can kindly ask the GST or others to document these things but treating people like crap and demanding things is certainly no way to get what you want. Most learn that at least before they are 10...
You shouldn't have to ask for documentation on the scripting engine, you don't seem to understand this. Stefan is making this scripting engine so other people can use it, there should be no lack of documentation.

You have the wrong idea if you think its just fine that its not documented and people shouldn't mind and ask nicely about it. I've asked nicely several times in the past (If you don't take my word for it I would care less), and I have yet to see any effort done to document the engine.
Quote:
Originally Posted by Tigairius View Post
Your post ID started with 1337, thought you would want to know.
So does everyone else's.
__________________
Reply With Quote
  #26  
Old 08-05-2007, 12:49 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Inverness View Post
You shouldn't have to ask for documentation on the scripting engine, you don't seem to understand this. Stefan is making this scripting engine so other people can use it, there should be no lack of documentation.

You have the wrong idea if you think its just fine that its not documented and people shouldn't mind and ask nicely about it. I've asked nicely several times in the past (If you don't take my word for it I would care less), and I have yet to see any effort done to document the engine.

So does everyone else's.
Then why don't you?
__________________
Do it with a DON!
Reply With Quote
  #27  
Old 08-05-2007, 01:00 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by zokemon View Post
Then why don't you?
I don't know, maybe because its not my job? My job is making content for Valikorlia not documenting the scripting engine like Stefan or the GST should have done. I'm not going to do other people's work for them because they didn't.

Not everyone is at or near the level of scripting ability of the GST and we want more decent scripters around Graal the engine needs to be documented so they know what they have to work with.

If this isn't the job of the GST please tell me what it is because they are called Global Scripting Team. And the only thing I've seen from them is the ClientRC. I wont appreciate favoring playerworlds while certain things still need to be done.
__________________
Reply With Quote
  #28  
Old 08-05-2007, 01:06 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Then I would gladly actively update the wiki if it was my job.
__________________
Do it with a DON!
Reply With Quote
  #29  
Old 08-05-2007, 01:47 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by zokemon View Post
Then I would gladly actively update the wiki if it was my job.
HINT HINT
__________________
Reply With Quote
  #30  
Old 08-20-2007, 04:28 PM
Switch Switch is offline
o.o
Switch's Avatar
Join Date: Jan 2007
Location: Philadelphia
Posts: 3,038
Switch has a spectacular aura about
Send a message via MSN to Switch
Well here's a whole website on this teaches all HTML XML CSS stuff

www.w3schools.com
__________________
Oh squiggly line in my eye fluid. I see you lurking there on the peripheral of my vision.
But when I try to look at you, you scurry away.
Are you shy, squiggly line?
Why only when I ignore you, do you return to the center of my eye?
Oh, squiggly line, it's alright, you are forgiven.
Reply With Quote
  #31  
Old 08-20-2007, 04:34 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Switch View Post
Well here's a whole website on this teaches all HTML XML CSS stuff

www.w3schools.com
Myspace, here I come!
__________________
Do it with a DON!
Reply With Quote
  #32  
Old 08-20-2007, 09:37 PM
Switch Switch is offline
o.o
Switch's Avatar
Join Date: Jan 2007
Location: Philadelphia
Posts: 3,038
Switch has a spectacular aura about
Send a message via MSN to Switch
trust me Zero, it's not as easy as you think xD
__________________
Oh squiggly line in my eye fluid. I see you lurking there on the peripheral of my vision.
But when I try to look at you, you scurry away.
Are you shy, squiggly line?
Why only when I ignore you, do you return to the center of my eye?
Oh, squiggly line, it's alright, you are forgiven.
Reply With Quote
  #33  
Old 08-20-2007, 09:47 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Well, we can't post links, but either way, I used w3schools, but also used Tizag. It's a little more personal than w3 seems to be, but no hands-on testing like w3 has. But whenever I couldn't find anything at w3, I could find it at tizag.
I'm sure anyone will be able to find their way there.
Reply With Quote
  #34  
Old 08-20-2007, 10:02 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Switch View Post
trust me Zero, it's not as easy as you think xD
I was joking. My 'space is already tricked out enuf plx.
__________________
Do it with a DON!
Reply With Quote
  #35  
Old 08-21-2007, 05:42 AM
Twinny Twinny is offline
My empire of dirt
Twinny's Avatar
Join Date: Mar 2006
Location: Australia
Posts: 2,422
Twinny is just really niceTwinny is just really nice
Send a message via AIM to Twinny
Myspace....people fail basic website layouts and designs there.

"I know!! Purple picture background with....PURPLE text! This will work!!....hmm how about alot of annoying animated green images! That surely won't clash with my purple!!"
Reply With Quote
  #36  
Old 08-21-2007, 12:37 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
If I remember right the "allowedtags" and "disallowedtags" was explained in the client change log / newfeatures list, which is available on the wiki.
You can also echo() those variables to get all available tags.
Reply With Quote
  #37  
Old 08-22-2007, 10:06 AM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by Stefan View Post
which is available on the wiki.
Uhh...?
__________________
Do it with a DON!
Reply With Quote
  #38  
Old 08-22-2007, 08:34 PM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
Yeah too bad the wiki is down.
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 11:23 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.