Jump to content
MakeWebGames

NonStopCoding

Members
  • Posts

    572
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by NonStopCoding

  1. You are meant to yes but them sites I sent you they are only tutorials on how to make your usb into a boot stick. Edit: i did find this with a quick google search but ill leave it up to you :) http://getintopc.com/softwares/operating-systems/windows-7-all-in-one-iso-free-download/
  2. check this http://wudt.codeplex.com/ and also this https://www.microsoft.com/en-us/download/windows-usb-dvd-download-tool
  3. [MENTION=68711]KyleMassacre[/MENTION] can't he just contact his host and ask to enable it?
  4. I would give up on rc until you can code properly stick to a more simpler engine
  5. there is a few things in rc that are taken directly from torn noticed this in the past and also the whole of the rc engine using mysql needs some serious recode
  6. There is small error in index.php as well you might want to fix [MENTION=67194]realmoflegends[/MENTION] (if selling code) Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/corruptedstreets/public_html/index.php on line 9
  7. I found this cool js code which will give you fireworks for your website could be useful for 4th july for american players just open up globals.php and on very last line add this code ?> <script type="text/javascript"> // <![CDATA[ var bits=80; // how many bits var speed=33; // how fast - smaller is faster var bangs=5; // how many can be launched simultaneously (note that using too many can slow the script down) var colours=new Array("#03f", "#f03", "#0e0", "#93f", "#0cf", "#f93", "#f0c"); // blue red green purple cyan orange pink /**************************** * Fireworks Effect * *(c)2004-14 mf2fm web-design* * http://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ var bangheight=new Array(); var intensity=new Array(); var colour=new Array(); var Xpos=new Array(); var Ypos=new Array(); var dX=new Array(); var dY=new Array(); var stars=new Array(); var decay=new Array(); var swide=800; var shigh=600; var boddie; if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) { var oldonload=window.onload; if (typeof(oldonload)!='function') window.onload=funky; else window.onload=function() { if (oldonload) oldonload(); funky(); } } addRVLoadEvent(light_blue_touchpaper); function light_blue_touchpaper() { if (document.getElementById) { var i; boddie=document.createElement("div"); boddie.style.position="fixed"; boddie.style.top="0px"; boddie.style.left="0px"; boddie.style.overflow="visible"; boddie.style.width="1px"; boddie.style.height="1px"; boddie.style.backgroundColor="transparent"; document.body.appendChild(boddie); set_width(); for (i=0; i<bangs; i++) { write_fire(i); launch(i); setInterval('stepthrough('+i+')', speed); } }} function write_fire(N) { var i, rlef, rdow; stars[N+'r']=createDiv('|', 12); boddie.appendChild(stars[N+'r']); for (i=bits*N; i<bits+bits*N; i++) { stars[i]=createDiv('*', 13); boddie.appendChild(stars[i]); } } function createDiv(char, size) { var div=document.createElement("div"); div.style.font=size+"px monospace"; div.style.position="absolute"; div.style.backgroundColor="transparent"; div.appendChild(document.createTextNode(char)); return (div); } function launch(N) { colour[N]=Math.floor(Math.random()*colours.length); Xpos[N+"r"]=swide*0.5; Ypos[N+"r"]=shigh-5; bangheight[N]=Math.round((0.5+Math.random())*shigh*0.4); dX[N+"r"]=(Math.random()-0.5)*swide/bangheight[N]; if (dX[N+"r"]>1.25) stars[N+"r"].firstChild.nodeValue="/"; else if (dX[N+"r"]<-1.25) stars[N+"r"].firstChild.nodeValue="\\"; else stars[N+"r"].firstChild.nodeValue="|"; stars[N+"r"].style.color=colours[colour[N]]; } function bang(N) { var i, Z, A=0; for (i=bits*N; i<bits+bits*N; i++) { Z=stars[i].style; Z.left=Xpos[i]+"px"; Z.top=Ypos[i]+"px"; if (decay[i]) decay[i]--; else A++; if (decay[i]==15) Z.fontSize="7px"; else if (decay[i]==7) Z.fontSize="2px"; else if (decay[i]==1) Z.visibility="hidden"; if (decay[i]>1 && Math.random()<.1) { Z.visibility="hidden"; setTimeout('stars['+i+'].style.visibility="visible"', speed-1); } Xpos[i]+=dX[i]; Ypos[i]+=(dY[i]+=1.25/intensity[N]); } if (A!=bits) setTimeout("bang("+N+")", speed); } function stepthrough(N) { var i, M, Z; var oldx=Xpos[N+"r"]; var oldy=Ypos[N+"r"]; Xpos[N+"r"]+=dX[N+"r"]; Ypos[N+"r"]-=4; if (Ypos[N+"r"]<bangheight[N]) { M=Math.floor(Math.random()*3*colours.length); intensity[N]=5+Math.random()*4; for (i=N*bits; i<bits+bits*N; i++) { Xpos[i]=Xpos[N+"r"]; Ypos[i]=Ypos[N+"r"]; dY[i]=(Math.random()-0.5)*intensity[N]; dX[i]=(Math.random()-0.5)*(intensity[N]-Math.abs(dY[i]))*1.25; decay[i]=16+Math.floor(Math.random()*16); Z=stars[i]; if (M<colours.length) Z.style.color=colours[i%2?colour[N]:M]; else if (M<2*colours.length) Z.style.color=colours[colour[N]]; else Z.style.color=colours[i%colours.length]; Z.style.fontSize="13px"; Z.style.visibility="visible"; } bang(N); launch(N); } stars[N+"r"].style.left=oldx+"px"; stars[N+"r"].style.top=oldy+"px"; } window.onresize=set_width; function set_width() { var sw_min=999999; var sh_min=999999; if (document.documentElement && document.documentElement.clientWidth) { if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth; if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight; } if (typeof(self.innerWidth)!="undefined" && self.innerWidth) { if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth; if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight; } if (document.body.clientWidth) { if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth; if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight; } if (sw_min==999999 || sh_min==999999) { sw_min=800; sh_min=600; } swide=sw_min; shigh=sh_min; } // ]]> </script> that’s it enjoy :)
  8. all shared hosting will eventually not be enough for your game you will need to move to a vp server at some point as your game grows bigger. You could either find someone who is willing and has the free time to set it up for you or you can pay someone to set it up i don't think anyone would charge a lot to do this
  9. i think he would be wise to go to you as you said you have previous experience with this i believe i can do it just never attempted it before anyways good luck :P
  10. if its not done then i can take it on up to you :)
  11. Ill ask a few questions How much is your budget for this project? Is the mod you want just so users can share houses or is there more to it than that?
  12. NonStopCoding

    Work

    i am free if you still need add me on skype its in my profile
  13. Boss module has been updated to v1.01 Changes * Changed the sql database around made it much better * Optimized the code for better resources * Added a boss chance to spawn every hour if one is not there he will also spawn in a random city. * Added boss health to refill every 5 minutes * Added javascript tabs to pull the info for top boss kills and top damage delt. For a updated copy please email [email protected] with the transaction id for payment this can be found on your receipt when purchased the module or from paypal
  14. my ps4 just sites there gathering dust lol no psn for it :( pain in the back side having to remember to renew it
  15. [MENTION=69001]Zettieee[/MENTION] is good too :p
  16. looks amazing cant wait to see more :D nice work dayo
  17. there has been some changes made in new version that wont work with older version of mccodes (v2.00 or ravens)
  18. cool glad its fixed lol
  19. From the header code you sent me i see this   function menuarea() { define('jdsf45tji', true, true); include 'mainmenu.php'; global $ir, $c; print '</ul></div></td><td width="2"> </td><td width="80%" valign="top"><center>'; if ($ir['hospital']) { print "<b>NB:</b> You are currently in hospital for {$ir['hospital']} minutes."; } if ($ir['jail']) { print "<b>NB:</b> You are currently in jail for {$ir['jail']} minutes."; } print "<div class='padding'><a href='donator.php'><b><font color='#CCCCCC'>Donate to {$set['game_name']} now for game benefits!</b></a>"; }   inside your mainmenu.php and smenu.php there should be code to check this define('jdsf45tji', true, true); which i don't see in your mainmenu.php or smenu.php remove them from the above functions and i believe it will work just fine :)
  20. the code you posted to me in a pm shows you have a define in your functions which for new version of mccodes remove it and it should be fine
  21. I can't see why the browser can cause it to send twice are you sure you were not refreshing it or whatever
  22.   * Recoded the staff panel as its was not inserting data properly. * Fixed up a small issue in dmission where it was showing undefined variable. Edit: If you can not re download it please contact me and ill give you download link due to security it expires after x amount of time
  23. yea i see what ya mean lol i did not read full code hehe
  24. i have applied some new fixes to the mission mod you can redownload the new version or email me
  25.   $db->query("INSERT INTO `challengesbeaten` VALUES($userid, {$r['userid']})");   if the challengebeaten has a auto increment this will not work you could do something like   $db->query("INSERT INTO `challengesbeaten` VALUES(NULL,$userid, {$r['userid']})");   or   $db->query("INSERT INTO `challengesbeaten` (`whateveruseridis`,`whatevernpcidis`) VALUES($userid, {$r['userid']})");
×
×
  • Create New...