Jump to content
New account registrations are disabed. This website is now an archive. Read more here.

Noob Saibot

Locked Member
  • Content Count

    2,122
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by Noob Saibot

  1. Nice to here, i was just about to search for a name generator and thought I would stop by. Nice updates and thanks for the oppertunity to be one of the Writing Teachers.
  2. Is that image of a Pokemon in the banner on that forum?
  3. Well in any case, once I have the money (25th) if you are interested I can still get you a host with far more space.
  4. I have a Script for a Monster data Base (made with a script of course). And I want it the word: "Bestary" (ya I spelled it wrong) to be on the main menu. So by selecting it it will call the script. In Short: A Tutorila That Tells me 1) How to add a menu item/choice to the default one. 2) How to delete a menu choice in the default one (example I want to remove the "save" choice completly) 3) Have the add menu choice call a sript That is all i want in the tutorial; I think it fits in a small edit of the current default CMS.
  5. You can find another sample work of mine here: right here.
  6. I just posted my newest Tutorial and the damn forum has some bugs, I'm sure you know about them but here I go: 1) When viewing a Topic it does not show the: Edit, Report Buttons (at least in the Tutorial Forum and a few others). 2) My tutorial was so damn long it cut it off again MARKED; you need to add a error if you use over the text/character allowed!!! 3) I then tried to post the rest of my tutorial and it wont show it for nothing. 4) I clicked the SIZE button for "7" and it made the code [SIZE=7] size seven, instead of the text I wanted size 7/ Any way Just letting you know, and if you know...then chop, chop and fix them... :D EDIT I reposted it and fixed the Size problam. But the Edit button does not appear in the View Topic for the Tutorial Forum. And I had to double post to completely post the tutorial and it want show it.
  7. I don't know much about scripting so why not make a Tutorial on CMS. Such things as adding your own menu choices (like Monster data Base)..or something. Why ask us any way...why not just create?
  8. RMXP game...hmmm what is that? Perhaps it's your outlook on it. I dont make games using RMXP any more (for now), but I think it should be getting inspiration on making a game not just for RMXP...after all I like C# myslef (still learning it though; thats C Soft).
  9. Oh snap who is Ghost Rider? I''m joking. I asked Marked to change my user name, so Now I am Otaku. Yes tis Kenshin, but I am looking for a good Eureka Seven avatar as that is my Fav. Anime.
  10. Well it has been sometime since I been here (okay not really as I made a few posts a few days ago). Any way this is the only RMXP site I am active on now. And as you can see I have come back (not that i ever left). In any way, tis me.
  11. FF= as gay as IE IE7= a copy of FF that it self makes it gay. IE= as gay as Opera Opera= As lame as netscape. Netscape= as gay as AOL browser So what do I use? Them all.. :P
  12. ID CSS Tag: # Description: This is used when an ID is called in HTML (e. g. <span id=Content>) Example: #content Class CSS Tag: . Description: This is used when a Class is called in HTML (e. g. <div class=ImageContent>) Example: .ImageContent Body Tag Start CSS Tag: { Description: Used after a ID or Class and tells the browser that this is the start of the CSS code for this class or ID Example: #Content { Body Tag End CSS Tag: } Description: Used after a ID or Classes content and tells the browser that this is the end of the CSS code for this class or ID Example: .Image Content { } CSS Content End Tag CSS Tag: ; Description: Used after the CSS tags used between the { and } tags. It tells the browser that this code is done/ended. Example: #Main Title { ;} Background Color CSS Tag: background-color: #Hex Number OR Color Name Description: Used to define the body background color or a table background color. Example: #Main Title { background-color: #000; } OR {background-color: red;} Background Image CSS Tag: background: url (http://url_address.com/image.png) Description: Used to define the body background color or a table background color. Example: #GuestBar { background: url (http://eminainformer.net/maintitle.png); } Border Solid CSS Tag: border: 1px solid color: #000 Description: Used to define a border on a body, table, row, <div>, etc. Example: #GuestBar { background-color: #000; background: url (http//:site.com/guest bar.png); border 1px solid color: #fff; } Border Dotted CSS Tag: border: 1px dotted color:#000 Description: Used to define a border on a body, table, row, <div>, etc. Example: #GuestBar { background-color: #000; background: url (http//:site.com/guest bar.png); border 1px dotted color: #fff; } Other Border Styles Below is examples of more Border Styles. Border Types Below is examples of a more defined border type. Right: border-right: 1px solid color: #000 Left: border-left: 1px dotted color: #fff Top: border-top: 2px groove color: # 808080 Bottom: border-bottom: none Proper Border Coding The above examples are quick ways of making borders, but to look more professional, look at ways a webmaster would properly code his borders in CSS so he/she doesn?t look like an amateur. #Guest Bar { background-color: #000; color: # fff; border-top-style: dotted; border-bottom-width: thick; border-left-width: 3px; border-right-width: 3px; border-color: #fff; } As you can see each section of CSS is on its own line because this is the proper way to code be it CSS or HTML. Below is another example. #Guest Bar { background-color: #000; color: # fff; border-top-style: inset; border-width: 3px; border-color: #fff; } Margins & Padding Below are some examples of Margins & Padding; also from here on out all example are shown in proper coding form. #Guest Bar { background-color: #000; color: # fff; margin-top: 5px; margin-bottom: -65px; margin: 3px; border-width: 3px; border-color: #fff; } #Guest Bar { background-color: #000; color: # fff; padding-bottom: 3px; padding-top: 3px; padding-left: 5px; padding-right: 5px; margin-top: 5px; margin-bottom: -65px; margin: 3px; } Another way of doing padding & margins is below. #Guest Bar { background-color: #000; color: # fff; padding: 5px, 5px, 5px,5px; margin: 3px, 0px, 3px, 0px; border-top-style: outset; border-width: 3px; border-color: #fff; } In the above example instead of typing: padding-left I simply defined all sides by margin: #px, this can also be done like so: { padding: 0px 0px 0px 0px; } as you can see I took out the commas, but to stay in the proper method if you use this then use commas. Links With links you can give all your links one solid color or give a specific link such as <div class=GuestBarContent>Click Here To Register</div> its own color. Are you lost? Let me explain by showing you to different example of CSS. Body { font: 11px; font-style: italic; font-family: Georgia, Times, serif; color: #000; background-color: #fff; Border: none; } a:link {color: #808080; } a:visited, a:active {color: #202020; } a:hover {color: #C0C0C0; text-decoration: underline; } As you can see from above you can define all of them by separating them with a comma a:link, a:visited, a: active { color: #800000; } but never add the a:hover as that should always be seprate from the other 3. Now lets use the example above ?GuestBarContent? to give it its own link properties. Body { font: 11px; font-style: italic; font-family: Georgia, Times, serif; color: #000; background-color: #fff; Border: none; } a:link { color: #808080; } a:visited, a:active { color: #202020; } a:hover { color: #C0C0C0; text-decoration: underline; } .GuestBarContent { font: 11px; font-style: italic; font-family: Georgia, Times, serif; color: #fff; background-color: #000; border-width: 1px; border-style: solid; } .GuestBarContent a:link, .GuestBarContent a:visited, .GuestBarContent a:active, {color: #200000; text-decoration: none; } .GuestBarContent a:hover {color: #222222; text-decoration: underline; border-width: 1px; border-style: dotted; } Now the body has a defined link color and our Guest Bar Content has its own as well. Also note I added a border to the ?.GuestBarContent a:hover? to give it more decoration. Font Color, Style, Weight, & Family This is very simple first to give something a basic color (not a link or background, but your text as a whole) you use: { color: #000; } now our text would appear as black. Lets add some weight to the text (never to the whole body of text). Do this by: { font-weight: 700; } or { font-weight: bold; } the 700 & word bold both mean the same thing see key below for some words you can use or the numbers that correspond to those words: Numeric Values | Keyword Lets give this text some style by adding: { font-style: italic; } or replace italics with: normal or oblique. The normal tag should not really be used, but below is an example in which you would use it. Body { font: 11px; font-style: italic; font-family: Georgia, Times, serif; color: #000; background-color: #fff; Border: none; } .GuestBarContent { font: 11px; font-style: normal; font-family: Georgia, Times, serif; color: #fff; background-color: #000; } In the above example our body used Italic and we did not want our Guest Bar Content to use it either so that is a case which you would use the normal font style tag. So now lets give the font some size by adding: { font-size: ?keyword?; } replace the word & quotes: ?keyword? using one of the words below: xx-small, x-small, small, medium, large, x-large, and xx-large; 100%, 200%, or any other percent, & lem. Now come font families and you can do these like so: { font-family: arial; } OR { font-family: Georgia, Times, serif; } You can also use your own font, but take note that unless other people have that text on their computer they won?t see it. Now lets Align our text by: { text-align: left; } OR { text-align: right; } OR { text-align: center; } OR { text-align: justify; } this can also be used to align tables, <div>, and other content besides text. Text Decoration Remember how we used: { text-decoration: underline; } well you can replace the word ?underline? with any of the words below: none: used to remove default underlining of linked text. overline: places a line above the selected text. line-through: this places a line through the selected text. blink: makes text blink (is not supported by Internet Explorer). Transforming & Varying Text Lets transform our text or a Heading by adding: { text-transform: none; } replace the word none with any of the words below: capitalize, uppercase, or lowercase. Lets give our text the effect of having capitalized words that are small by adding { font-variant: small-caps; } and again you can use the word normal, but only if you need to. First-Letter & First-Line This is cool; I just learned this one myself not to long ago it allows you to give the first line of a paragraph effects or decoration same with the first letter, but to the very first letter typed in the first line of a paragraph. This one is not hard to do, but it might get you lost. Lets look at our GuestBarContent for this one. .GuestBarContent:first-line { color: #000; } .GuestBarContent:first:letter { font-weight: bold; } Look at the examples above in order for this to work you need to call a class or id: Class:firt-line OR ID:first-letter so lets say you wanted all the lines in Post 1 (found in your CSS) to be bold face then it would look like: .post1:first-line { font-weight: bold; } Closing Well that?s all of the basic stuff you will find in your Skin CSS plus I added stuff not normaly found in a Skin CSS. Now that you have learned so much why not try the project below. CSS Project In this project we will learn how to use everything above by adding a box that only guests can see. This box should not be kept on your forum so make sure you do this on a Test skin. You can make one by going to: Admin CP >> Skin Manager >> HTML Templates >> Base new Template Off then go to: Admin CP >> Skin Manger >> Edit >> change the HTML Template for that skin. UNDER DEVELOPMENT
  13. Introduction This tutorial will show basic use of the <div> tag and how you can use IDs & Classes to make the section stand out using CSS. Like the HTML Reference tutorial said, ?can be used in your board wrappers, HTML template, forum rules (in Admin CP), Board guidelines (Admin CP), website, & posts (as long as the doHTML BB Code tag is activated for that forum and group).? <Div> Tag Reference(s) Below are three ways to set up the HTML <div> tag. The first way is basic html, but the other to ways has added information to be used in the CSS. DIV Basic Tag Start: <div> | Tag End: </div> Description: Denotes divisions with in a document. Example: <div>Your Content</div> DIV Ids Tag Start: <div id=Name> Tag End: </div> Description: Identifies a Division in sections of a document that can then be positioned and styled with CSS. Example: <div id=guest_bar>Welcome Guest</div> DIV Classes Tag Start: <div class=Name> Tag End: </div> Description: Identifies a Division in sections of a document that can then be positioned and styled with CSS. Example: <div class=guest_bar_content>This is sample text that could welcome a guest to your forum and would be posted in the HTML Template.</div> <DIV> CSS Reference Now lets look at how some sample CSS that would make the Div tag have a style and location (be sure to read my CSS Reference tutorial for more info). CSS Key Sample CSS ID #Guest_Bar {background-color: #000; border: 1 solid color#fff; color: #808080; } Sample CSS Class #Guest_Bar_Content {background-color: #fff; border: 1 solid color#000; color: #c0c0c0; } Sample CSS Of IPB 1.3 Skin #777; background-color: #DFE6EF; padding: 4px; margin: 0px } .warngood { color: green } .warnbad { color: red } #padandcenter { margin-left: auto; margin-right: auto; text-align: center; padding: 14px 0px 14px 0px } #profilename { font-size: 28px; font-weight: bold } #calendarname { font-size: 22px; font-weight: bold } #photowrap { padding: 6px } #phototitle { font-size: 24px; border-bottom: 1px solid black } #photoimg { text-align: center; margin-top: 15px } #ucpmenu { line-height: 150%; width: 22%; border: 1px solid #345487; background-color: #F5F9FD } #ucpmenu p { padding: 2px 5px 6px 9px; margin: 0px } #ucpcontent { background-color: #F5F9FD; border: 1px solid #345487; line-height: 150%; width: auto } #ucpcontent p { padding: 10px; margin: 0px } #ipsbanner { position: absolute; top: 1px; right: 5% } #logostrip { border: 1px solid #000; background-color: #000; padding: 0px; margin: 0px } #submenu { border: 0px; background-color: #DFE6EF; font-size: 10px; margin: 3px 0px 3px 0px; color: #3A4F6C; font-weight: bold; background-image: url(http } #submenu a:link, #submenu a:visited, #submenu a:active { font-weight: bold; font-size: 10px; text-decoration: none; color: #800000 } #userlinks { border: 0px; background-color: #F0F5FA; background-image: url(http } #navstrip { font-weight: bold; padding: 6px 0px 6px 0px } .activeuserstrip { background-color: #BCD0ED; padding: 6px } .pformstrip { background-color: #202020; color: #000; font-weight: bold; padding: 7px; margin-top: 1px } .pformleft { background-color: #C0C0C0; padding: 6px; margin-top: 1px; width: 25%; border-top: 1px solid #C2CFDF; border-right: 1px solid #C2CFDF } .pformleftw { background-color: #C0C0C0; padding: 6px; margin-top: 1px; width: 40%; border-top: 1px solid #C2CFDF; border-right: 1px solid #C2CFDF } .pformright { background-color: #C0C0C0; padding: 6px; margin-top: 1px; border-top: 1px solid #C2CFDF } .signature { font-size: 10px; c1077435762olor: #339; line-height: 150% } .postdetails { font-size: 10px } .postcolor { font-size: 12px; line-height: 160% } .normalname { font-size: 12px; font-weight: bold; color: #003 } .normalname a:link, .normalname a:visited, .normalname a:active { font-size: 12px } .unreg { font-size: 11px; font-weight: bold; color: #900 } .post1 { background-color: #800000 } .post2 { background-color: #800000 } .postlinksbar { background-color: #D1DCEB; padding: 7px; margin-top: 1px; font-size: 10px; background-image: url(style_images/<#IMG_DIR#>/tile_sub.gif) } .row1 { background-color: #404040 } .row2 { background-color: #808080 } .row3 { background-color: #404040 } .row4 { background-color: #808080 } .row1, .row2, .row3, .row4 { font-family: Verdana, Tahoma, Arial, sans-serif; font-size: 10px; color: #000 } .row1 a:link, .row1 a:visited, .row1 a:active { color: #000 } .row1 a:hover { color: #404040; text-decoration: underline } .row2 a:link, .row2 a:visited, .row2 a:active { color: #000 } .row2 a:hover { color: #404040; text-decoration: underline } .row3 a:link, .row3 a:visited, .row3 a:active { color: #000 } .row3 a:hover { color: #404040; text-decoration: underline } .row4 a:link, .row4 a:visited, .row4 a:active { color: #000 } .row4 a:hover { color: #404040; text-decoration: underline } .darkrow1 { background-color: #C0C0C0; color: #4C77B6 } .darkrow2 { background-color: #404040; color: #3A4F6C } .darkrow3 { background-color: #c0c0c0; color: #3A4F6C } .hlight { background-color: #C0C0C0 } .dlight { background-color: #404040 } <DIV> Project Now lets use what you learned above to make a simple News Box. This news Box will use the 2 <DIV> tags, but it would be better to use the <table> tag (but that's another Tutorial). UNDER DEVELOPMENT; Please Check Back Soon
  14. The references below can be used in your board wrappers, HTML template, forum rules (in Admin CP), Board guidelines (Admin CP), website, & posts (as long as the doHTML BB Code tag is activated for that forum and group). All elements below are common use on a forum/message board. Links Start Tag: <a href=??> | End Tag: </a> Description: Used for linking to external documents or/and intrapage references. Example: <a href=?http://www.ursite.com/?>Text</a> AND <a href=?http://www.ursite.com?><img src=?http://www.yoursite.com/yourimage.png?></a> Images Start Tag: <img src=??> | End Tag: ?none? Description: Calls a Image to be displayed. Example: <img src=?http://www.yoursite.com/yourimage.png?> Bold Face Start Tag: <b> | End Tag: </b> Description: Used to denote bold text. Example: <b>My Text</b> Underline Face Start Tag: <u> | End Tag: </u> Description: Used to denote underline text. Example: <u>My Text</u> Italic Face Start Tag: <i> | End Tag: </i> Description: Used to denote italic text. Example: <i>My Text</i> Font Size Start Tag: <font size=#> | End Tag: </font> Description: Used to denote the size of text. Example: <font size=3>My Text</font> Font Color (Hex) Start Tag: <font color=#123456> | End Tag: </font> Description: Used to denote color of text by a Hex Number. Example: <font color=#000000>My Text</font> Font Color (Word) Start Tag: <font color=name> | End Tag: </font> Description: Used to denote color of text by a colors name (not all color names will work). Example: <font color=red>My Text</font> Font Style Start Tag: <font face=Text Style> | End Tag: </font> Description: Used to denote Font Style of text. Example: <font face=Arial>My Text</font> Font Color, Size, & Style Start Tag: <font color=#123456 size=# face=font name> | End Tag: </font> Description: Used to denote color, style, & size of text (can be in any order). Example: <font color=#000000 size=2 face=Arial>My Text</font> Center Start Tag: <center> | End Tag: </center> Description: Used to center elements of a webpage. Example: <center>My Text OR Image OR Table OR etc.</center> There is also the <div> tag, but that Tag will be given ]it?s own Tutorialas it can do many things. (Other HTML tags explain in other Tuts are: <span> & <table>)
  15. Sent mine for the Writer. My sample work is located at one site (2 of them). In fact why not share my samples with other members: www.eminainformer.net/ghostrider_samplework.
  16. It's basic like you said. But it does have the basic features. I myself use C# (C Soft) and for the RPG Maker I'm making; Dragon Developer it has a basic Browser built in the system.
  17. I agree one reason why the X-Men movies kinda sucked.
  18. @ ryanrulz_11 Like your Avatar of Gaara.
  19. Yu-Gi-Oh CBS Contents Forward The CBS InfoType of CBS Add-Ons Alter Default CBS Stuff The CBS In Full Detail [*]Closing Forward Well I don't know much RGSS, but I did buy a book about Ruby and plan on learning. But untill that day comes I am reduced to asking for help. Now this is a CBS and from what I have read in the stickies they are not well liked or just a small chance it won't get done. But I am not heading into this with that negative thought; after all someone out there is bound to be nice and take time out of their life to code this for me. Now first of this does have to do with Yu-Gi-Oh, but let it be known that this is not a Card Battle CBS request. That would be WAY to much coding. In fact this is just a edit of the default battle system; such as: Add Ons And some edits of the default stuff But more on that latter. Now this in my opinion would fit in the original area as I have not seen this battle system in a game before (feel free to correct me if I am wrong). Also I requested it on another site; but they just directed me here. Well enough chatting lets start explaining how I would like this CBS to function... The CBS Info In this area I will explain the stuff I wish to add on and edit about the default battle system. Type of CBS Well as i said before this is not a request for a Card battle System. This is simply a edit of the Default Battle System. For this reason I have added the next 2 sections which will explain the "Add-Ons" and the "Edits" of the default battle system. Also in the "Closing" section you will learn what other scripts I plan on using so you can make it so they work together instead of against each other. Type of CBS: Edit (Default) Level of CBS: In my opinion I would rate the "Hard" level of this script at 3 out of 5 (I could be wrong so be nice if I am). Add-Ons 5 Players- This system will uses a Max of 5 Players (Heros) on the battle field. remeber I am using the default battle system you just need to add spaces for 1 more fighter (hero). 2 Face Images- These are small images (max size: 60x60) located at the top of the battle screen. Our hero's image will appear on the left side of the screen and our enemy will appear on the right side. Icons- These will appear next to the following words on the "words" left side: Attack, Defend, Cards, & End Turn. I did not add the "END TURN" in the image below because I thought of it after I made it. So remember to add it. Reorder ATK Order- This add on will alter the default "ORDER" of who attacks. Basically I would like it so If I have 1 monster I can only ATK (or choose DEF) once using that monster. If I have 5 I can ATK 5 times (or DEF 5 Times) with each monster once. Once I have used up all my attacks/Defends the ATK & DEF words will fade out (a sign you can't pick them any more). Alter Default CBS Stuff Here you will learn about some of the defualt stuff you will have to edit/move. HP Moved & Renamed- The HP will be renamed to LP (life points) and be located right below the "face image Set." ATK & DEF & LEVEL- This will appear below your Hero name (or at least the heros that your hero controlls). It tells you the Summon Hero's: ATK power, DEF power, and it's level. Attack & Escape Word Change- This is just a simple edit of the Word ATTACK & ESCAPE (see image for what they should be and what I mean). In case I still lost you look at the image above then look at the default words below: Status Effect to Type- This will change the text [Normal] to a monster type like: [spellcaster]. I would like it so it reads the Fighters "Class" (Fighter, Mage, etc) and then displays the class name in the [] durring battle. DEF or ATK- This is a small symbol like maybe a * that will appear next to the word ATK or DEF and it indicates if a monster is in ATK or DEF mode. "sorry no screen shot" The CBS In Full Detail Now i will explain in a little more detail on how some of the CBS should work. LP (Life Points): As you know it is moved, but this is how it should work. If I have a monster with a ATK: 2800 and a DEF: 1000 and my enemy has a monster ATK: 1400 & DEF: 1700 and it ATKs me and my monster is in ATK mode then 1400 points of damage are deducted from the LP (Life Points). Attention: LP is 8,000 for the player & enemy and does not change at all!!! Bringing 8,000 down to: 6600 LP Left. ----------------------------------------------- If I have a monster with ATK: of 1200 and my enemy has a monster with a DEF: 1400 then I loose 200 LP. ----------------------------------------------- If our ATKs are the same (2500) then not LP is dealt, but both monsters are destroyed. ----------------------------------------------- If I have a monster with an ATK: 3000 and my enemy has a monster with a DEF:3000, no LP is lost and no one is destroyed. ------------------------------------------------ HP does not exsist and each monster I controll does not have a HP or LP bar. The LP is for the person controlling ( i e summoning) the monsters to the field. New In Battle Menu: This is the actions taken (ATK, DEF, CARDS, & END TURN). ATK- monster will attack; same function in the game. DEF- put monster in DEF mode and adds some type of sysmbol next to the word: "DEF" Cards- this is just the ITEM name changed to CARDS. End Turn- this will end your turn (not the battle) and now your enemy will go. -------------------------------------------------- Remember I each monster I have can only ATK or choose to DEF once for each monster (total 5). After that the DEF & ATK words fade out. Closing Well thats all to it I hope; any questions post or PM me. Thanks for reading this topic and thanks in advanced if you decide to do it. Also make sure the script works with the following scripts: 1) Dubs: Advanced Message System Script 2) SephirothSpawn: Inn & Shop Scripts 3) SDK - Standard Development Kit
  20. Ever play with fire and then you get burned (Seems that's what I did on this forum and I was burned like like a dead corps). I am here to apoligize for my short Drama. I some sometimes take things personal (bad habbit of mine). Well I hope to start fresh and hopefully most of you can forgive my child like attitude before. But don't we all take things personal on some level (some of use just choose to show it). Any way I ask that someone delete my good bye topic & all topics relating to the drama so I may start some what fresh.
  21. Noob Saibot

    Help for the VPS

    Thats what I was takling about. They have one; it's called something like: Red Eyes baby Dragon and is in a egg with it's arems & legs poking out.
  22. ya, but it sucks cause then i have to try and find the problam if a site/templet is not displaying right.
  23. Well what do you think of my willow character?
×
×
  • Create New...