Jump to content
MakeWebGames

lucky3809

Members
  • Posts

    1,115
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by lucky3809

  1. Too huge in my opinion.. Good work but too huge... A player will get bored of needing to scroll over, take off 50px from the main table... And also if you haven't tested it IE 6 its not compatible with and most players use that browser... you can google what is used most, and what display resolution, it will help improve your layouts..
  2. Well it could be used for testing though and you can always remove the crons and use time stamps there is a free mod on here from haunted dawg that works great...
  3. There is a way of doing it, maybe add them like $crime1=$ir['will']*5/2+$ir['level']/2; $crime 2=crime2 formula... and so on... then echo them llike echo ' '.$crime1.' '; put them by the corresponding crime that they go to...it should calculate it for you the math and echo the outcome.
  4. echo your formula... You need to select crimePERCFORM in a query then echo that field... That field is in the crimes table..
  5. first have you added the sqls to your database?
  6. Well he asked for the drag and drop tables like torn has on the index, but never found it so thought i would share those links with him, he thought this menu one is what he is looking for and it's not the same lol.. But yeah he probably wont even understand how to convert it into mccodes... Seeing how he was unable to copy the info i told him to copy... but what i have posted today should help him, if not then he needs to go back studying php and coding all together...Before even trying to implement such..
  7. http://x10hosting.com/ is the only free host that i know of that allows game scripts on free hosting... If you do sign up for free hosting with them instead of waiting for it to get verify you can browse their forum and it will activate the hosting... after you activated it through your email... just a tip lol..
  8. Isee this topic is not what you are looking for I had this menu its not what you think... god use google better or ask someone for a website that has the explanation to what your looking for... here's your copy of torns drag n drop tables http://demo.webdeveloperplus.com/drag-drop-panels/ the save function http://webdeveloperplus.com/jquery/saving-state-for-collapsible-drag-drop-panels/
  9. Well you have no security what so ever on the whole script, i bet your users can also get your login and hash pass in your forum too...
  10. An Appeal room? Would be like adding it on like comments.. There is a free comment on here somewhere,wouldnt be hard to change bits of it, then just add an event to staff when the player had typed in their appeal and posted itl...
  11. It is not a lot of coding, compared to needing to write a css for each image... Gangster is wanting an image effect not text if i read it correctly, blade makers is for images, but if gangster has more then one image he wants the hover effect for he would have to add another css to them each because as you can see in blades example its only for one image to have that effect not for all images... the javascript provides effects for all images, plus preloads the images and for hover effects on submit buttons..
  12. I use OO Dom Image Rollover script then just add regular img then add the hover img.... much better to do it this way, then making css for each image...   This is not my script but is given freely on the website listed in the copyright area... call this file...oodomimagerollover.js /* Header Information------------------------------------[Do Not Remove This Header]-- Title: OO Dom Image Rollover Description: This script makes it easy to add rollover/ mousedown effects to any image on the page, including image submit buttons. Automatically preloads images as well. Script works in all DOM capable browsers- IE5+, NS6+, Opera7+. Legal: Copyright 2005 Adam Smith Author Email Address: [email protected] Date Created: June 6, 2005 Website: Codevendor.com | eBadgeman.com Script featured on Dynamic Drive: http://www.dynamicdrive.com ----------------------------------------------------------------------------------- */ function imageholderclass(){ this.over=new Array(); this.down=new Array(); this.src=new Array(); this.store=store; function store(src, down, over){ var AL=this.src.length; this.src[AL]=new Image(); this.src[AL].src=src; this.over[AL]=new Image(); this.over[AL].src=over; this.down[AL]=new Image(); this.down[AL].src=down; } } var ih = new imageholderclass(); var mouseisdown=0; function preloader(t){ for(i=0;i<t.length;i++){ if(t[i].getAttribute('srcover')||t[i].getAttribute('srcdown')){ storeimages(t[i]); var checker=''; checker=(t[i].getAttribute('srcover'))?checker+'A':checker+''; checker=(t[i].getAttribute('srcdown'))?checker+'B':checker+''; switch(checker){ case 'A' : mouseover(t[i]);mouseout(t[i]); break; case 'B' : mousedown(t[i]); mouseup2(t[i]); break; case 'AB' : mouseover(t[i]);mouseout(t[i]); mousedown(t[i]); mouseup(t[i]); break; default : return; } if(t[i].src){t[i].setAttribute("oldsrc",t[i].src);} } } } function mouseup(t){ var newmouseup; if(t.onmouseup){ t.oldmouseup=t.onmouseup; newmouseup=function(){mouseisdown=0;this.src=this.getAttribute("srcover");this.oldmouseup();} } else{newmouseup=function(){mouseisdown=0;this.src=this.getAttribute("srcover");}} t.onmouseup=newmouseup; } function mouseup2(t){ var newmouseup; if(t.onmouseup){ t.oldmouseup=t.onmouseup; newmouseup=function(){mouseisdown=0;this.src=this.getAttribute("oldsrc");this.oldmouseup();} } else{newmouseup=function(){mouseisdown=0;this.src=this.getAttribute("oldsrc");}} t.onmouseup = newmouseup; } function mousedown(t){ var newmousedown; if(t.onmousedown){ t.oldmousedown=t.onmousedown; newmousedown=function(){if(mouseisdown==0){this.src=this.getAttribute("srcdown");this.oldmousedown();}} } else{newmousedown=function(){if(mouseisdown==0){this.src=this.getAttribute("srcdown");}}} t.onmousedown=newmousedown; } function mouseover(t){ var newmouseover; if(t.onmouseover){ t.oldmouseover=t.onmouseover; newmouseover=function(){this.src=this.getAttribute("srcover");this.oldmouseover();} } else{newmouseover=function(){this.src=this.getAttribute("srcover");}} t.onmouseover=newmouseover; } function mouseout(t){ var newmouseout; if(t.onmouseout){ t.oldmouseout=t.onmouseout; newmouseout=function(){this.src=this.getAttribute("oldsrc");this.oldmouseout();} } else{newmouseout=function(){this.src=this.getAttribute("oldsrc");}} t.onmouseout=newmouseout; } function storeimages(t){ var s=(t.getAttribute('src'))?t.getAttribute('src'):''; var d=(t.getAttribute('srcdown'))?t.getAttribute('srcdown'):''; var o=(t.getAttribute('srcover'))?t.getAttribute('srcover'):''; ih.store(s,d,o); } function preloadimgsrc(){ if(!document.getElementById) return; var it=document.getElementsByTagName('IMG'); var it2=document.getElementsByTagName('INPUT'); preloader(it); preloader(it2); } if(window.addEventListener){window.addEventListener("load", preloadimgsrc, false);} else{ if(window.attachEvent){window.attachEvent("onload", preloadimgsrc);} else{if(document.getElementById){window.onload=preloadimgsrc;}} }   Then include the page in header or wherever the images that has hover attribute... <script type="text/javascript" src="oodomimagerollover.js"></script> the two images you would add like this... <a href='about.php'> <img src='about.png' srcover='about2.png' alt='about'/></a> srcover= is the hover pic...
  13. take the POST out and just leave ' ' in the query...
  14. Yeah easy add a query with rand in it..
  15. geez just make a test table and copy torn's drop boxes it easy.. and no i wont make it for free... its too time consuming when im busy doing something else.. just giving you an idea how to do it...
  16. don't need to try a service, to give a review... quite frankly that's why you do the research first on a company... I have already read bad reviews of this host... what makes me want to give up cash to try it? And not trust the customers reviews? And your not answering the questions truthfully your bypassing the important ones... So what makes this not fall under FAIL attempt to collect cash off vulnerable people? With all this UNLIMITED stuff, and that you will keep adding HDD's if the client is to go over, which if that is the case I would want to make sure you add 50 HDD's for me lol... Don't think you will, so why not set a LIMIT?... Or actually state exactly how many HDD's your willing to add per person, when they exceeded their limit, of suppose unlimited space...
  17. There is not exactly such a thing as UNLIMITED for a web server, it's ALWAYS limited to usage... Companies use that term to bring in clients... too me... why lie to your customers/clients, and not just set the limits? Your TOS has me wondering why you even would advertise your service on a game forum, when you don't allow games on your severs let alone 5 minute crons, which games consist of... So if I were to sign up and paid and uploaded several files to your server that exceeded the limit, your saying you will add on another hdd and that I can fill that up too? Then a 3rd one? Then another? But the down fall is the speed of your service will be shitty... So why would UNLIMITED fall into that category? Because most clients do not read fine print? Or is it you believe your clients to be stupid to not know what UNLIMITED is for your service? Set guidelines people can understand.. and stop with saying you will keep adding hdd's to your service if they exceed the limit to make it UNLIMITED... when I doubt you would add on 50 HDD's for me let alone 3.. Just saying... Be clear, wrong impressions won't sell, neither will it hold up in court, if someone wanted to sue over not getting what your service promised them...
  18. Will pass this offer up heard it's not up to much and too much scams and spam...
  19. formula=math!! lol if you don't know math then you may be lost... mystical explained it for you... ((WILL*0.8)/1)+(LEVEL/4) players Will multiplied by 0.8 then divided by 1 level of the player divided by 4 then add those two numbers together that is your success formula... If you dont understand it echo it by $formula=(($ir['will']*0.8)/1)+($ir['level']/4) ; echo $formula;
  20. how hard really is it to add a item,shop,estate pic? do you not use a display_pic on your profile pages? If so the code should already be there, you really don't need help if you cant figure out what tag to place it in, you should read up on tables or divs which ever you use.... just saying...
  21. This is a great mod!! dont use abs though, use intval instead.. abs do not exactly secure it.. what i learned...
  22. for someone to help you make this for free you need to give them the other pages so they know what they are doing.Because with the newspaper no one got you, because you didnt exactly post the whole page, just the functions...
  23. lucky3809

    Crazy form lol

    Well your query is wrong how is it going to determine what user you are? You have it selecting from Everyones ibank... As for it redirecting you to the gym, it has nothing to do with that bit of code...
  24. will look at it and see...
×
×
  • Create New...