cbox
-
Posts
6582 -
Joined
-
Last visited
-
Days Won
139
Content Type
Profiles
Forums
Downloads
Gaming News
Everything posted by iBotPeaches
-
Could I get banned? Because I really want to try this.
-
Not for me. 500 error has no problems on your end. So there must have been an error over here. I cannot replicate the problem at all though.
-
I only play Zelda, SuperSmashBrothers, Pikmin, Halo, Gears.
-
Did that video ever show us how to get in? My sound isn't working right now.
-
Same, Xecuter 3? I love it, blue light means go, and red light means unsafe for xboxlive.
-
Actually you didn't use a proxy. I accidentally unbanned the last 5 banned IP's because I was trying to load up the spam bot IP's, but accidentally deleted some. Thanks for letting me catch that, your IP range now has been banned. We don't have a word filter, next time you want to talk to me. Talk to me, don't use this junk asteriks.
-
This is for xbox 1, and extremely old and difficult. Because all those free eeproms are already banned, so you basically need another unbanned xbox to get unbanned. In that case, why not just use the other xbox?
-
I would say during 1.2 update, they added a lvl_3.patch or something like halo 2, where at times it patches over the .map of snowbound and that nulls the tag, so then you can re-forge the map without the shield doors reverting back.
-
The site will be locked and you will need to be logged into ibotmodz.net/forum to access it. It will use session keys from the cache to check if your logged into IBM.
-
Usermaps don't hold anything from the map. They act as a place holder to show where weapons, characters, power-ups should spawn. Since all the real game content of that map is located in the .map file. I assume as a game loads it draws the information it needs from the .map. If you own the game engine, then you know how the map files work, so I assume they just told the usermap not to grab the shield door tag. However you can still here the sound when you pass under it, so probably they just nulled the tag that showed it.
-
The own the game engine, and the game. I assume they just nulled something out.
-
I guess send them to me, I upload since I don't fully trust FTP access with anyone yet.
-
Files that are over 5mb that need a direct download link I assume.
-
If you've been here for the past few days, a survey went around (Survey Here) This hepled me determine some things, such as the new domain name. iBotModz will continue to be iBotModz.net. However HostMonster (my host) doesn't allow file hosting because it kills bandwidth. Long story, direct linking to files on my computer was unsafe and I was tired of it. Fattwam (Sub-Admin) here has helped out by donating some of his hosting service for us. Thanks. xXxStevenxXx has also helped out by donating 5 bucks to the domain purchase. He will be rewarded on the new site. Domain.................Votes................Percent ibotfiles.com...........12.....................29.27% ibmdownloads.com...6.......................14.63% ibotdownloads.com..5........................12.20% ibmfiles.com...........12....................... 29.27% then the others.... fattwam_is_pro.com lol jk i like ibotfiles IMBfiles.com ibotdl.com ibmsucks.com ibotgamez.com What the hell is domain? So there it is. ibotfiles.com won. It has been purchased and will start running the downloads tommorow morning. Peaches
-
This will make slip mad. Otherwise lol. I enter...
-
Nothing really unlimited. I assume its a 1TB drive, no one really uses all of it, so you say Unlimited. Your hosting company would probably drop you if you would use all 1TB
-
I sat in the chatbox for 3 hours, asking for people interested. Sorry you didn't catch it.
-
I love one survey, and all this competition. I'm just going to wait 5 days. Look at the stats and go from that.
-
Lesson 8: Links In this lesson, you will learn how to make links between pages. What do I need to make a link? To make links, you use what you always use when coding HTML: an element. A simple element with one attribute and you will be able to link to anything and everything. Here is an example of what a link to HTML.net could look like: Example 1: <a href="http://www.html.net/">Here is a link to HTML.net</a> Would look like this in the browser: Here is a link to HTML.net The element a stands for "anchor". And the attribute href is short for "hypertext reference", which specifies where the link leads to - typically an address on the internet or a file name. In the above example the attribute href has the value "http://www.html.net", which is the full address of HTML.net and is called a URL (Uniform Resource Locator). Note that "http://" must always be included in URLs. The sentence "Here is a link to HTML.net" is the text that is shown in the browser as the link. Remember to close the element with an . What about links between my own pages? If you want to make a link between pages on the same website, you do not need to spell out the entire address (URL) for the document. For example, if you have made two pages (let us call them page1.htm and page2.htm) and saved them in the same folder you can make a link from one page to the other by only typing the name of the file in the link. Under such circumstances a link from page1.htm to page2.htm could look like this: Example 2: <a href="page2.htm">Click here to go to page 2</a> If page 2 were placed in a subfolder (named "subfolder"), the link could look like this: Example 3: <a href="subfolder/page2.htm">Click here to go to page 2</a> The other way around, a link from page 2 (in the subfolder) to page 1 would look like this: Example 4: <a href="../page1.htm">A link to page 1</a> "../" points to the folder one level up from position of the file from which the link is made. Following the same system, you can also point two (or more) folders up by writing "../../". Did you understand the system? Alternatively, you can always type the complete address for the file (URL). What about internal links within a page? You can also create internal links within a page - for example a table of contents at the top with links to each chapter below. All you need to use is a very useful attribute called id (identification) and the symbol "#". Use the id attribute to mark the element to which you want to link. For example: <h1 id="heading1">heading 1</h1> You can now create a link to that element by using "#" in the link attribute. The "#" must be followed by the id of the tag you want to link to. For example: <a href="#heading1">Link to heading 1</a> All will become clear with an example: Example 5: <html> <head> </head> <body> <p><a href="#heading1">Link to heading 1</a></p> <p><a href="#heading2">Link to heading 2</a></p> <h1 id="heading1">heading 1</h1> <p>Text text text text</p> <h1 id="heading2">heading 2</h1> <p>Text text text text</p> </body> </html> will look like this in the browser (click on the two links): (Note: An id attribut must start with a letter) Can I link to anything else? You can also make a link to an e-mail address. It is done in almost the same way as when you link to a document: Example 6: <a href="mailto:nobody@html.net">Send an e-mail to nobody at HTML.net</a> will look like this in the browser: Send an e-mail to nobody at HTML.net The only difference between a link to an e-mail and a link to a file is that instead of typing the address of a document, you type mailto: followed by an e-mail address. When the link is clicked, the default e-mail program opens with a new blank message addressed to the specified e-mail address. Please note that this function will only work if there is an e-mail program installed on your computer. Give it a try! Are there any other attributes I should know of? To create a link, you always have to use the href attribute. In addition, you can also put a title on your link: Example 7: <a href="http://www.html.net/" title="Visit HTML.net and learn HTML">HTML.net</a> Would look like this in the browser: HTML.net The title attribute is used to type a short description of the link. If you - without clicking - place the cursor over the link, you will see the text "Visit HTML.net and learn HTML" appears.
-
I sure can't code one for internet. However this guy already did, and its open source. He also made the first FLV video player. http://www.jeroenwijering.com/?item=JW_FLV_Media_Player
-
Yeah sorry Dark. I used to use all these Excel documents of tag lists, and websites. Now sandbox has all these interactive pictures, so I use that now and Forge 2.5
-
Bump. Twam buried this, 2 seconds later. lol
-
Thank you for participating in the survey. Your account username has been forwarded to an admin and you will be rewarded on IPB 3.
-
I purchased ibmfiles.com Do you need the login to name.com? Or just my auth code?
×
- Create New...