Jump to content
MakeWebGames

Dayo

Administrators
  • Posts

    2,491
  • Joined

  • Last visited

  • Days Won

    196

Everything posted by Dayo

  1. i would add a random capcha that appeares every so often like mt_rand(1, 10) if (rand == 1){//show capch} else {//dont show capch} pm me if you want more info
  2. Cool mod, Gona add a few things thogh like points donator days and money maby make an item called chocolate :D insted of 25 fields added to the user tabl;e why not do something like FIELD NAME befor colected - 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FIELD NAME AFTER CLOLECTED - 1c,2c,3c,4c,5c,6c,7c,8c,9c,10c,11c,12c,13c,14c,15c,16c,17c,18c,19c,20c,21c,22c,23c,24c,25c $fields = explode(',', $ir['FIELD_NAME']); //probly is a better way to do this $int = (int) $fields[1]; if ($int==$fields[1]) {//colect} else {echo 'you have this pack';endpage();exit;} by no means am i saying this work just saying it saves code plus data
  3. Dayo

    Death-Wars

    layout is good BUT i don't like the tables eg on the garage looks like a 3px border
  4. looks good for a open source project, thinking of it it looks very like tribal wars.
  5. SERVICE UPDATE Price is $35USD for the intergration of UseBB, this includes The gang forums (NEW!) Custom template - looks like your mccodes template DB intergration Login/Register intergration Mccodes Runs from cookies Not Sessions Mccodes v2 Little downtime (as work is done on my home server then uploaded to yours) UseBB structure edited to fit your personal liking (NEW!) I will also take on any other open source forum software intergration for a price tag of $25usd PLEASE NOTE: This includes (3, 4, 5, 6, 7 and possably 1)
  6. oh yea :P thanks for that MD yea $10 would get the intergration
  7. ild do Usebb for $35 fully intergrated $10 would get the template done
  8. SMF Looking at SMF i should be able to intergrate the table struture as well as that the login sessions/cookies will be kept the same (so you only have to login/register once) BUT as in usebb i will not make a custom template for SMF but there are great free ones out there I can also do the same as SMF with VBulletin - V3.8.4 (IF YOU GET A FREE SKIN I WILL ALTER IT FOR YOUR NEEDS) any questions PM me (price foir the two above are $50 as stated with the useBB)
  9. Poll and PMs i can intergrate for you as with usergroups ill look at intergrating other Software soz my keybodaerd batters are dieing
  10. I think i forgot to say this is a FULL intergration usebb is modified to suit your game, not only this i will customise usebb for your own requirements (within reason)
  11. Hiya i have just found useBB this (i think) is perfect (secure) forum software for mccodes, its simple and light weight, i am willing not only to intergrate it with your mccodes (so they run off the same DB, login, register etc..) it will have a near/exact match to your mccodes template!!! so you dont have to fork out for another custom template. i will change the login/register to cookie based not session based (BUT i can still keep the $_SESSION varable if you want!) i will be making a demo site with the usebb package installed to show you what i mean. NOTE: All your users WONT have to re-register for your forums downtime is kept to a minimum as i do all the work on my home server and will test it there i will then upload it to your server BTW this is my 1st post on Make Web Games but i was an active user on CE Price on this varies but start from $50 USD (this will usuly take a days work to do (if that)) :thumbsup: here is a scren shot of the work i am doing on my own (non-mccode) RPG INGAME FORUM please note i have yet to change the blue bar to grey but you will have custom images made to suit your theme
  12. Re: [Web 2.0] html nav bar [$10] you dont have to be a 'good' coder to make that into php but what you are trying to sell is something you can do on dreamweaver in 30 seconds and make on fireworks/photoshop in a couple of mins not worth 50 pence let alone $10 plus this forum is for mccodes not pointless html codes that you have to convert yourself for mccodes soz if i seam to be flaming you i havent had no sleep in 3 days and im grumpy :S
  13. Dayo

    Count Down Clock

    Re: Count Down Clock all you have to do is add somat like ".$set['time']." then add somat in cron min to add a min")
  14. Re: [MC-Codes][V2]Thugs (core system) its september cos i have 8-9 hours shifts every day at work till then :(
  15. Dayo

    Count Down Clock

    Re: Count Down Clock correct me if i am wrong but the requires a countdown.js which will be the main workings of the script which you have no access to... /* Author: Robert Hashemian [url]http://www.hashemian.com/[/url] You can use this code in any manner so long as the author's name, Web address and this disclaimer is kept intact. ******************************************************** Usage Sample: <script language="JavaScript"> TargetDate = "12/31/2020 5:00 AM"; BackColor = "palegreen"; ForeColor = "navy"; CountActive = true; CountStepper = -1; LeadingZero = true; DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds."; FinishMessage = "It is finally here!"; </script> <script language="JavaScript" src="http://scripts.hashemian.com/js/countdown.js"></script> */ function calcage(secs, num1, num2) { s = ((Math.floor(secs/num1))%num2).toString(); if (LeadingZero && s.length < 2) s = "0" + s; return "[b]" + s + "[/b]"; } function CountBack(secs) { if (secs < 0) { document.getElementById("cntdwn").innerHTML = FinishMessage; return; } DisplayStr = DisplayFormat.replace(/%%D%%/g, calcage(secs,86400,100000)); DisplayStr = DisplayStr.replace(/%%H%%/g, calcage(secs,3600,24)); DisplayStr = DisplayStr.replace(/%%M%%/g, calcage(secs,60,60)); DisplayStr = DisplayStr.replace(/%%S%%/g, calcage(secs,1,60)); document.getElementById("cntdwn").innerHTML = DisplayStr; if (CountActive) setTimeout("CountBack(" + (secs+CountStepper) + ")", SetTimeOutPeriod); } function putspan(backcolor, forecolor) { document.write("<span id='cntdwn' style='background-color:" + backcolor + "; color:" + forecolor + "'></span>"); } if (typeof(BackColor)=="undefined") BackColor = "white"; if (typeof(ForeColor)=="undefined") ForeColor= "black"; if (typeof(TargetDate)=="undefined") TargetDate = "12/31/2020 5:00 AM"; if (typeof(DisplayFormat)=="undefined") DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% Minutes, %%S%% Seconds."; if (typeof(CountActive)=="undefined") CountActive = true; if (typeof(FinishMessage)=="undefined") FinishMessage = ""; if (typeof(CountStepper)!="number") CountStepper = -1; if (typeof(LeadingZero)=="undefined") LeadingZero = true; CountStepper = Math.ceil(CountStepper); if (CountStepper == 0) CountActive = false; var SetTimeOutPeriod = (Math.abs(CountStepper)-1)*1000 + 990; putspan(BackColor, ForeColor); var dthen = new Date(TargetDate); var dnow = new Date(); if(CountStepper>0) ddiff = new Date(dnow-dthen); else ddiff = new Date(dthen-dnow); gsecs = Math.floor(ddiff.valueOf()/1000); CountBack(gsecs);
  16. Re: [MC-Codes][V2]Thugs (core system) from the 1st of september i will be recoding all of this i will be relesing the core systemout for free but there will be addons for it that you can install for it (will be around $5ea tho) when 1st coded this i was learning php and threw this together so it will be beter coded too!
  17. Re: Looking for code paying $5 look for exp=exp+ then add before that brave=brave+2,
  18. Re: mcodes v2 installer.php help when i first started php i used Black Apple Host it will start off running good but soon it gets very very slow and lagy it had problems running the simplest of scripts defently not good for mccodes
  19. Re: Respect from orgcrimes im not saying do this or do that it just says //DO NOT RE-DISTRIBUTE so you will have to contact blackdragon
  20. Re: Respect from orgcrimes //Please Keep This Notice //Copyright BlackDragon 2008 //Free For CE Members //DO NOT RE-DISTRIBUTE //staff_orgcrimes.php ... soz if you are r blackdragon
  21. Re: Helping me learn :) http://en.wikipedia.org/wiki/Heist it is where 2 or more people join together to comit a heist once done they get lots of exp and cash BUT you can only do 1 a day and there is a low chance of sucsess the more people the better
  22. Re: Helping me learn :) here is an idea have a 2/3 player heist mod :wink: have fun, i have one on my comp so ill compare mine to urs (if you do it)
  23. Dayo

    PHP Question

    Re: PHP Question I learned by reading books/ online tuts and what I learned most on was mccodes modifications
  24. Re: FlashChat 4.7 Auto Login? im not sure but if you buy he full version cant you edit it so it auto logs you in with out adding the ?password=xxxxxxx&username=xxxx
  25. Re: Problem with my v2 Captcha make the answer into a session then check if the answer == the session
×
×
  • Create New...