Jump to content
MakeWebGames

wrx

Members
  • Posts

    212
  • Joined

  • Last visited

Everything posted by wrx

  1. wrx

    Layout Needed

    What kind of layout do you have in mind ? What is the theme of the game ?               wrx
  2. pnotepad (its free) features: * Syntax Highlighting for lots of languages, configured with schemes * Multi-language user interface * Unlimited number of schemes supported, powerful syntax highlighting supporting both user-defined and built-in schemes * Text Clips provide smart templates for text insertion * Code Folding/Outlining * Docking windows for: File Browser, Open Files, Text Clips, Tool Output, Find in Files results * Regular expression search and replace (full perl syntax) * Excellent external tool support with user-configurable output matching – click on errors and warnings to jump right to the place in the file where they were generated * Split Views * Bookmarks (both numbered and plain) * Export to HTML (using CSS) and RTF * Code definition browsing and navigation (using Ctags) * Non fixed-width font support * Projects and Project Groups with multi-level folders and file system mirroring * Scripting with Python * Extensions support for developing add-ons with C++ * Support for UTF8, 16 and various file encodings * Support for windows, unix and macintosh line endings * Tabbed MDI interface, with multi-level split views * Word-wrapping Programmer's Notepad
  3. wrx

    If you have 1 wish

    my wish would be that nobody but myself gets thier wish granted /thread
  4. thanks guys though not many template orders yet maybe my style is just to elite. ill work on it <<<<<< As you can see from my new avatar im going for a New Image approach kinda like MCC haha.. WRX 2.0 patched and secure 8|
  5. Kustom designs prices negotiable prefer hourly rate ( this is 3 hrs so ...) more time = more kustom designs Please dont copy Image 8o
  6. why the need to curse everyone out in every thread you post in. this forum is not here for you to post your useless foul mouth comments in its to discuss the threads topics. please stay on topic or Off Topic It <--- here... that way when people read or search threads they get actual relavent information and not just worthless bitchin and name calling           wrx
  7. If you haven't already i would look in to doing this with CSS as i have done this before for a need i had , not game related just a content website. In my situation i was able to distribute formatted content based on browser detection with out having to maintain completely different directories of the site. I already had the site set up to include different CSS based on IE, Opera , Firefox, etc.. so adding in a few phone browsers wasn't an overwhelming task. The end result worked out well as was easy to manage. Do a Google search for [lmgtfy]mobile phone css template[/lmgtfy] and you should get plenty of links to resources that may be helpful to you if you take this route.           wrx
  8.   can all be removed and the end result can still be easily achieved             wrx
  9. well done i like the little news feed you got in there :)
  10. add a new column in the table that is built from the search query in search.php have that new table pull the user ID wrap a link around that user ID to your attack file   reference the code for the attack link found in the viewuser.php that might help if you have no idea how to do it.       wrx
  11. Here is a quote from my first post in this thread   I guess this need to be explained .. my post simply adds fancybox fuctionality to the origional script posted by the thread starter. As you can see in the above quote this enables fancybox.   --------------------------------   Again it was asked and answered     --------------------------------   do you have fancybox ?
  12. Correct it would....the iteminfo.min.php i used is simply the iteminfo.php minus the header,mainmenu and footer.
  13. fancybox if you dont all ready use it or need the jquery
  14. nice add.. I added fancybox to this here's the code to enable rel link to call [url='iteminfo.min.php?ID={$p[']{$p['itmname']}[/url] add in header.php <script type="text/javascript"> $("[rel=item_info]").fancybox({ 'width' : '50%', 'height' : '70%', 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe' }); </script> wrx
  15. actually my post tells you what you need to look at and an easy way to troubleshoot it with out giving you the answer directly.   or just take the easy way out and read seanybobs post as he gave you the answer :)     wrx
  16.   just looked at this quickly and noticed $r is that defined in your function. what is returned if you echo $r['married'] , probably nothing     wrx
  17. i like it i voted 20$ on the poll. you posted your selling this for under 10$ ... thats kinda low imo gj     wrx
  18. what do you think the requirements for nomination should be ?   wrx
  19. what image editor are you using ? what format are you exporting it to ? define width and height in your img tag when displaying and it wont resize. if it does make sure no css is being applied to your image area did you add any special variables that might not be browser friendly index/alpha transparency post your source image   wrx
  20. Yes i realize this is a old thread.... regardless here is a good script to test for GD library support w/ image type support detailed as well. if you cant get an image to display this would e a good troubleshooting start create file testgd.php <?php /* Displays details of GD support on your server */ echo '<div style="margin: 10px;">'; echo '<p style="color: #444444; font-size: 130%;">GD is '; if (function_exists("gd_info")) { echo '<span style="color: #00AA00; font-weight: bold;">supported</span> by your server!</p>'; $gd = gd_info(); foreach ($gd as $k => $v) { echo '<div style="width: 340px; border-bottom: 1px solid #DDDDDD; padding: 2px;">'; echo '<span style="float: left;width: 300px;">' . $k . '</span> '; if ($v) echo '<span style="color: #00AA00; font-weight: bold;">Yes</span>'; else echo '<span style="color: #EE0000; font-weight: bold;">No</span>'; echo '<div style="clear:both;"></div></div>'; } } else { echo '<span style="color: #EE0000; font-weight: bold;">not supported</span> by your server!</p>'; } echo ' by [url="http://www.dagondesign.com"]dagondesign.com[/url]</p>'; echo '</div>'; ?>   run script in your browser       wrx
  21. Adds the captcha to the form <div id="login" class="boxed"> <h2 class="title">User Login</h2> <form action=authenticate.php method=post name=login onsubmit=\"return saveme();\"> <table border='1'> <tr><td>Username:</td><td> <input type=text name=username></td></tr> <tr><td>Password:</td><td> <input type=password name=password></td></tr> <tr><td colspan='2'>Captcha: enter 3 black symbols</td></tr> <tr><td>[img=./captcha.php]</td> <td><input type=text name=captcha maxlength='3'></td></tr> </table> <input type=submit value=Login> </form> </div>
  22. i have my opinion too as to what Renkia meant......maybe Renkia can clarfiy what this means  
  23. please explain... how does DNS stop people from taking full controll of your game ?     wrx
  24. GJ simple yet effective. i could see where even adding an option to put yourself in the jail/hosp could be usefull to test pages that block access as well.
×
×
  • Create New...