Jump to content
MakeWebGames

Dominion

Members
  • Posts

    2,447
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Dominion

  1. why is it when people talk about mcc cb is not around yet he is always around to get rid of posts :S anyways this mod still fails nice idea but put more work into it (even you said the way you put it out was bad but i think db get rid of that post)
  2. youtube and here
  3. i miss your logic ? your going to stop making the 'engine' better out of respect for the poor people left out of pocket :huh: without people like you mcc would have died a long time ago if you do give up on mccodes i hope you pick a new engine to do stuff for *cough* zap engine/ezrpg *cough*
  4. yes it is go read up on copyright law... @hd - i more mean its no longer the same as mccodes i may have quoted to much there but on the layout for example they added a whole new file (the footer) just to encode it lol but ravan is not really the same as v2 anymore its just as crap just has more put into it
  5. you can edit any copy of mccodes and add free mods to them thats why they are there... if you use paid mods you can use them as many times as the programmer allows in fact with mccodes lite you can do more since if you develop the main engine its not locked to one site per licence
  6. you can't use ravan unless you buy v2 since ravan is v2 with a hell of a lot of free and paid (so thats illegal to) mods
  7. if you have a legal copy of mccodes v2 using it should be ok but i am not sure how many paid mods there are from people not linked to mccodes and if they stay on your site that adds a whole new issue best thing to do is just not use it but if you do make sure everything on it is part of v2 or free
  8. your wrong ok so its mccodes v2 at the base but it has so many mods added to it (free mods) that ravan and v2 can be put side by side and someone that does not know its mccodes would pick ravan as the better "engine" for example ravan you can run crons from smenu something v2 you can not ravan if the installer.php is not taken off will not let you login something mccodes should of done its not much but there a small things like that added to a lot of the base thus for someone who wants the added mods its a lot of work to install them all on a new copy of mccodes v2
  9. raven is just an engine (mccodes v2) with alot of free mods more or less of all them can be found on mwg anyway both suck on how secure they are and both suck on support however legal mccodes holders do not get "omg your using ravan" when asking for help on mwg and that does help a little
  10. i don't really like this i find i can't help but look every 5 mins to click it and i get no work done lol
  11. its like the real stock market but uses game money...
  12. Dominion

    New Game

    ravan has a mod guy holding a gun not a skull... the inside and out don't really go well but the site itself does not look 1/2 bad
  13. once again something i have not messed with but exit is a function would   if(file_exists('ipbans/'.$ip)) { exit("<font color=red size=-1><center>Your IP has been banned. There is no way around this.</center></font>"); }   not work ? and i would also stop using depreciated tags :)
  14. sent you a youtube link in a pm about jquery and how to use it to fadein and out will look over the page if i get time but if not should help you a little (just so people don't think i am ignoring you lol) some much better people then me on here i am sure they will help :)
  15. you can't use exit($h->endpage()); i assume as the header.php is the ingame layout and register and the login are outside the game (so header.php would not be included) exit and die are php functions and would still work to kill the page
  16. @wazum - thats cos i am unique and with mccodes i check every little thing no matter if its pointless cos it will go wrong if i don't lol random amount won -   <?php ///ALTER TABLE `users` ADD `daily` TINYINT( 1 ) NOT NULL DEFAULT '0'; ///cron $db->query("UPDATE `users` SET `daily`='0'"); include 'globals.php'; $won = rand(1, 100); $userid = $ir['userid']; ///if this is set already feel free to take it but i am not 100% sure if it is so put it in anyways if ($ir['daily'] != 0) { echo "You have already collected your daily reward"; exit($h->endpage()); } else { $query = "UPDATE `users` SET `daily`=1 WHERE `userid`=$userid"; $db->query($query); $query2 = "UPDATE `users` SET `crystals`=`crystals`+$won WHERE `userid`=$userid"; $db->query($query2); echo "thanks for playing"; event_add($ir['userid'], "you won $won crystals, today thanks for playing"); exit($h->endpage()); } ?>
  17. its ok but for mccodes you don't need the select query (since its in $ir) you also would not need a new table just a basic 0 or 1 set in the user table (since yours adding something to users anyway) but its not bad :)
  18. @wazam - i know lol not the 1st time thats been said to me i seem to do it anyway and take them out later did that in the message box guess i should of looked it over still should work :P @Aurora078 they can't get them unless online since you must vist the file it only has 1 user addon so not an issue and it does reset on the day cron ><
  19. <?php ///ALTER TABLE `users` ADD `daily` TINYINT( 1 ) NOT NULL DEFAULT '0'; ///cron $db->query("UPDATE `users` SET `daily`='0'"); include 'globals.php'; $userid = $ir['userid']; ///if this is set already feel free to take it but i am not 100% sure if it is so put it in anyways if ($ir['daily'] != 0) { echo "You have already collected your daily reward"; exit($h->endpage()); } else { $query = "UPDATE `users` SET `daily`='1' WHERE `userid`=$userid"; $db->query($query); $query2 = "UPDATE `users` SET `crystals`=`crystals`+60 WHERE `userid`=$userid"; $db->query($query2); echo "thanks for playing"; event_add($ir['userid'], "you took your 60 daily crystals"); exit($h->endpage()); } ?>   did not really edit much but your SELECT query was asking for things that globals already has in $ir (its the whole user table) also added a small event the rest does the same :)
  20. not being funny here but in the long term its better to learn then buy only pay for something if you could already do it yourself that and he never said it was mccodes :P (unless i missed that)
  21. don't get me wrong jquery is a good idea for something like this but i just don't like it nor do i seem to get along with it if it works for you it works. you may also want the http://api.jquery.com/fadeout/ when they click "start again" or fadeout when the upside down card (that i would assume is were the random card going to be shown) and no nothing needs to be installed it can be called via an outside source from here i think ? http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js you could also download it and include the file i assume
  22. not sure you should use jquery here but i will answer what you asked (i just don't like jquery) yes fadeIn( [ duration ], [ callback ] ) is a function look here http://api.jquery.com/fadeIn/ however for a hilow game make sure you hide the image first before showing a new one since it does not always give the effect you want it to http://api.jquery.com/hide/ (ok does not always give the effect i want it to could work for you but just so you know :) ) i am assuming here that the point is not having to refresh the page ? btw examples are on the site i linked to so no real need to post it up if you need more help we may need to see what your trying to fade
  23. Mccodes needs to get off its ass and do something what have they done for mwg since they have taken over -added topics -nope thats it...   I mean really come on here are some ideas first off what about the staff members that are never online? If they can’t get on find temps until they can. Next why on earth is mccodes v3 in the works fix v2 and v1 not so much lite since its free anyway but the paid engines fix up before finishing v3. Third stick to what you say- I can find posts from the week you took over claiming modifications are going to come out on the mccodes website for all well ummm nice car mod... Fourth – WHAT ABOUT THE MEMBERS !!! your all having a go at mccodes well people are not willing to help on things such as zap engine this site (under md anyway) has had many projects that the community seems up for and no one puts work in. In fact at this point may I just say there are people like a_bertrand who as far as I know did the whole zap engine how it stands and he did a very nice job. -edit can i just say that does not really apply to anyone who has posted above me however it is true for most members   Fifth – MWG Awards everything is already set up to do this all you need to do is add a poll and let us vote is that so hard ? no ? then bring it back … Sixth – this site is based around mccodes we get it but come on is it that hard to have a staff member per engine or be sure that the engines in your download page are secure and up to date free yes but it’s a nice thing to do for people. Last of all can I just say it’s not just mccodes people have gone out of fear since they never paid for v2 I mean going back to 07 you can find bull shi* posts that say “omg mcc never held copyright” noobs left that’s fine btw what happend to the mccodes wiki ? o yea danny took over and no support was given so he stopped just saying one more thing that could get going again ...
  24. since this won't be here long and it won't put my post count up - LOL
  25. i think theres a daily hand out mod anyway for the donators ? but they have to click on the page so not active you got nothing may be better then mass handing them out once a day the chance to claim up to 10 crystals
×
×
  • Create New...