Jump to content
MakeWebGames

modernmafiia

Members
  • Posts

    162
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by modernmafiia

  1. ok for the attack/summoning one which i need atm im paying $25
  2. there was a construction mod around here somewhere for $10 i can not find, and also i could pay upto $15 for stake fights and $20 for the first one altogether around $55 for 3 mods 2 of them are not as big
  3. hello i dont need the gym or inventory as i have them now this is what i require this is a pm i sent to someone for what i require: iM looking for a simple summoning system, paying - $15-20 Basically there is a item in my shop which you buy, and enter that page it will display the information like how many of that item you got, then i want in ajax option to use all the items or choose a quantity and use, what this will do is each item will give says 2 xp so say i had 100 of this 2x100 = exp for all the item i used now donators to be given double exp, after you bury them you basically just get exp to level up in summoning, which is out of level 99 the exp is out of 100%. Once you gain certain level you can purchase some pets from the stores which act like weapons all summoning level is require for is to buy these pets, now ofcourse i will need some querys to add into the itembuy.php so it will pick out the itemid and say if summoning level is below this that item is not purchaseable, once you buy that item you can equip it to what ever i set if armour power then you can equip as armour else weapon so its just an item basically but you need summoning to purchase it now once you wield it as primary or secondary, i want some edits to attack page where the pet also get involved and helps you so meaning you have a wep in primary and secondary your pet, so it will combine both item powers together. Also i want my attack more fun as in it will be ajax one you fight it will take turns automatically every 1-2 seconds and carry on displaying results for you so once you take your turn well it will auto matically take it for you as its ajax it will say waiting for results from opponent or something then display and carry on doing until a winner. on the attack page i want inventory items to be displayed so while the attack is in progess and you running out of health if you have any food or something you can revive your self and continue the fight. Also if they loose you get what every they have equipped armour/prim/secondary and you get all there cash if they have any in hand, now one thing on this is you get everything but the users should keep his most valueable item so say he wore a $32k platebody and $2m primary item and $10m secondary item he will lose the rest but keep the $10m item. So summoning and this is all in one summoning is not to be honest a feature just some addons to this attack mod im wanting. Also i need a stake fight feature where you signup and another users looks through signed up users and can request a fight with a stake this will send and event to the user who hie wants to fight asking them to confirm if they want to accept the stake and fight or cancle or change the stake if they change stake it will send event to the other guy letting them know about the change and if the accept or no, once accepted its a normal fight but winner gets the stake and ranks up in the duel arena page so depending on how many fights he won he will be top stake challenger there etc.like a top board... also another is constuction you buy brocks and w/e and build properties in land you have to buy land first, each property will tell you what the requirements are once you have all you can contruct the proeprty and everyday you get money like share it randomly goes up in profit r down meaning your loss this is to be every hour, better properties will mostly bring in profits but to build them will be expensive All together i will be paying around $15-20 for first attack/summoning mod $15 for duel arena mod nothing big just like adding some money and restrictions to fighting $10 for this construction one seen this somewhere around can not find no more....it was going for $10
  4. Im looking for some coders, to create me some mccodes mods paying pm me if you can do the job.
  5. Ajax gym and drag and drop inventory! that is what im looking for hit em up on PM.
  6. I agree you must have got ripped off, you can fine way better themes for free to be honest
  7. Ok i have added a new colum called dditem in the items table this is set to default 0 but if it is set to 1 it means its a donators item now in itembuy i cannot figure out what the code would be to function it, so if the dditem = 1 and donatordays is below 1 it will echo saying donators items else if if dditem = 1 and donatorday = more than 0 or 1 it will let you purchase the item   <?php include_once (DIRNAME(__FILE__) . '/globals.php'); $_GET['ID'] = ( isset($_GET['ID'])&&is_numeric($_GET['ID']) )?abs(intval($_GET['ID'])):''; $_POST['qty'] = ( isset($_POST['qty'])&&is_numeric($_POST['qty']) )?abs(intval($_POST['qty'])):''; if ( empty($_GET['ID']) OR empty($_POST['qty']) ) { echo 'Invalid use of file'; } else { $q = $db->query("SELECT `itmbuyprice`, `dditem`, `itmname`,`itmbuyable` FROM `items` WHERE `itmid` = {$_GET['ID']} AND ( `loc` = {$ir['location']})"); if ($q['dditem'] == 1 AND ($ir['donatordays'] < 1 )) { echo"This item is a donators items!"; die($h->endpage()); } if ( $db->num_rows($q) == 0 ) { echo '<b>This item is not purchasable in this location.</b> '; } else { $itemd = $db->fetch_row($q); if ( $ir['money'] < ($itemd['itmbuyprice'] * $_POST['qty']) ) { echo 'You don\'t have enough money to buy '.$_POST['qty'].' '.$itemd['itmname'].'!<br /><br />> <a href="index.php">Go Home</a>'; die($h->endpage()); } if ( $itemd['itmbuyable'] == 0 ) { echo 'This item can\'t be bought!<br /><br />> <a href="index.php">Go Home</a>'; die($h->endpage()); } $price = ($itemd['itmbuyprice'] * $_POST['qty']); item_add($userid, $_GET['ID'], $_POST['qty']); $db->query("UPDATE `users` SET `money` = `money` - $price WHERE `userid` = $userid"); $db->query("INSERT INTO `itembuylogs` VALUES ('', $userid, {$_GET['ID']}, $price, {$_POST['qty']}, unix_timestamp(), '{$ir['username']} bought {$_POST['qty']} {$itemd['itmname']}(s) for {$price}')"); echo 'You bought '.$_POST['qty'].' <img src="'.$itemd['itmname'].'"> '.(($_POST['qty'] > 1) ? 's' : '').' for '.money_formatter($price).'<br /><br />> <a href="inventory.php">View your Bag</a>'; } } $h->endpage(); ?>
  8. I have replaced did not work i was in same location as the item said invalid ID said it with all item in different locations i tried it
  9. Ok i have taken a bit of the coding out from the shop so it is a global shop and doesnt have to appear in certain locations, I also added a new colum to items tables which is for location i have set my item with a location but having some troubled adding the restriction to itembuy.php to pickout the colum from items called LOC which = to locations it displays the error code even if im in the right location.     <?php include_once (DIRNAME(__FILE__) . '/globals.php'); $_GET['ID'] = ( isset($_GET['ID'])&&is_numeric($_GET['ID']) )?abs(intval($_GET['ID'])):''; $_POST['qty'] = ( isset($_POST['qty'])&&is_numeric($_POST['qty']) )?abs(intval($_POST['qty'])):''; if ( empty($_GET['ID']) OR empty($_POST['qty']) ) { echo 'Invalid use of file'; } else { $q = $db->query("SELECT `itmbuyprice`,`itmname`,`itmbuyable` FROM `items` WHERE `itmid` = {$_GET['ID']}"); if ( $db->num_rows($q) == 0 ) { echo 'Invalid item ID'; } else { $itemd = $db->fetch_row($q); if ( $ir['money'] < ($itemd['itmbuyprice'] * $_POST['qty']) ) { echo 'You don\'t have enough money to buy '.$_POST['qty'].' '.$itemd['itmname'].'!<br /><br />> <a href="index.php">Go Home</a>'; die($h->endpage()); } if ( $itemd['itmbuyable'] == 0 ) { echo 'This item can\'t be bought!<br /><br />> <a href="index.php">Go Home</a>'; die($h->endpage()); } $erq=$db->query("SELECT * FROM items"); while($rr=$db->fetch_row($erq)) { if($rr[loc] == $ir['location']) { echo "You cannot purchase this item from another city"; die($h->endpage()); } } $price = ($itemd['itmbuyprice'] * $_POST['qty']); item_add($userid, $_GET['ID'], $_POST['qty']); $db->query("UPDATE `users` SET `money` = `money` - $price WHERE `userid` = $userid"); $db->query("INSERT INTO `itembuylogs` VALUES ('', $userid, {$_GET['ID']}, $price, {$_POST['qty']}, unix_timestamp(), '{$ir['username']} bought {$_POST['qty']} {$itemd['itmname']}(s) for {$price}')"); echo 'You bought '.$_POST['qty'].' <img src="'.$itemd['itmname'].'"> '.(($_POST['qty'] > 1) ? 's' : '').' for '.money_formatter($price).'<br /><br />> <a href="inventory.php">View your Bag</a>'; } } $h->endpage(); ?>
  10. Updated the prices
  11. Hello guys i need a few mods for mccodes, v2.3 -Grand exchange (replacement for shops) now to be honest making items, and creating many shops and adding to each city is very long process what i want is one page to display all items in game 100 per page, and it will be only purchasable if you are in a certain location and have a certain account level and cash to buy. -Also if the item is donators item it will say upgrade to purchase this. -if you meet requirement the purchase button will be clickable and open to purchase. Not hard to be honest just adding some restrictions thats all and having it display and function all at once in stead of traveling to new city an a new shop is available very long. $10-15 ------------------------------------- Travel page more active, very small addon i want 2 option users to pick either travel by a jet or ship, jet is more expensive = you will get to the location faster, ship cheap = but longer to get to location once you choose the option the places to travel based on the level will show pick and press travel pay of the fees and confirm if you would want to wait that many hours if accept your travel page will show how long in real time left say if 1hr will display: 01:00:00 if 1 minute goes 00:59:00 and progress bar also wanted to show how many percentage of the travel complete just to keep users a bit entertained and excited. not paying much for that small addon want it in ajax so no refreshing is required when you have picked the travel options etc.. $5-7 -------------------------------------------------- Training tent (replaces gym) ---train on bandits camp = strength once selected you pay fee for a hour you pick how many hour will show total hours it double exp for strength same with rest of the skills just replacing the name so instead of bandits will be agility arena same process this is for donators. Once you pay for amount of time you bought to train at that certain place you can re visit when ever you want to check on how much exp gained. Free members will still use normal gym. $10 --------------------------------------------------------- That all for now pritty simple not tooo hard
  12. Well to have a full android app made for mccodes it will be like coding the whole script again but for mobile it will cost around $500+. You can use free android app making siite they take the link of your site its basically a mobile browser app for your site, you can pay someone around $150 for a mobile layout which will look professional on phones.
  13. I need crimes recreated, i dont want it text based as in just click and its done, basically i want like 5 made, btw its not a mafia game, say for instant one of them is : Cut logs price given for cutting 1 log successfully = $1 and you gain 1xp , how i want it is basically say you check the mini quest out the gain and price given then you decide you want to do this you press the button "Do this" it will then do that certain task and you will be on a page where it shows the timer and tells you what task your doing, and every say 30m/s the result pop up if you successfully cut a log or you have not, its basically based on time not how much brave. Brave will be removed from my game, it will only be Will so the higher the Will you can do better tasks, but a slight change atm in the script say you set 2 brave for a crime, it reduces 2 brave everytime you commit that crimes mines will be like a requirement like say i set a crime to 10 will required to do this, you will need to have 10 will or higher to be able to do that task it wont reduce nothing. in my game basically the will rises with the property so the more richer you are the better property meaning higher will and able to do better tasks. I want the feature in ajax sort so it dont have to refresh, once again ill say it a bit more clear i want a crime page recreated, the tasks will be created in database as usual, once you have the right requirement as in WILL and decide you want to do that task you click the button which will take you to a page, telling you what task you are currently doing, and the result beneath that is refreshed every 30/ms so instead of having to keep pressing try again it auto untill they decide to try another task. price is $10-20 its not a big feature just a few edits and ajax. all it is replacing the link to keep pressing try again when it will keep on performing the task every 30m/s or how ever long set and displaying result also without will being used so they can keep performing the task without stopping and having to wait for will or brave to refill etc..
  14. This guy is really P-ing me off, that is not my design that was an example of how i wanted things positioned cant you upload the chat here? and see how you fail, your lucky i dont have it cause i spoke on hotmail messenger, that was to show you how i wanted things positioned with css, but you kept begging for a design which made me think you are in to steal my templates if i did provide, cause i clearly said many times i want a basic layout for now after engine is complete i will do my template and add it in my self, could you not understand that? Also please answer back who asked for an engine me or you? i asked for features for mccodes, but you offered me and engine so i went with it clearly you wanted more money...
  15. Lol i agree with you haha nothing serious went there, but nerds like him always trying to tell people about little issues not like i went up to him, he came to me haha stupid people,i didn't even attempt to scam or nothing i was just arguing with him saying just create me a basic layout i will add my template later but obviously he can not understand that. @DJ if you did not know what he meant it means his the biggest snitch, if it was something serious such as i scammed him then it would be ok to warn everyone but him opening this for what cause i had an argument with him and he was not successfull in getting my designs.
  16. haha really makes me laugh grr, hate these types of people please upload the whole chat and see you have failed in your own statement he says that i wanted a whole engine dude i asked you many times saying is it not possible for you to create me the feature for mccodes you said you like to start things from scratch and for $300 you could create me and engine with what i wanted so i thought id go ahead admins can check the PM, and regarding layout your like the biggest fool alive i got the whole chat which i will upload in abit, it clearly states that me saying i do not have no design made i will create my own and implement it, what did you understand, also a layout i asked you to just position things using a css and basic structer for now but it seems like you had difficullt understanding that and kept begging me to give you the design/template. And you tell people to be cautious of me stupid guy you lost nothing i never pm you saying can you do it for me you pm me told me to add you and then you keep begging for a template when i clearly said using css make me a simple layout and work off that i will add template of my own later... Also i even said that make it like mccodes it game with a basic layout, people started adding there own template after, but you go you cant do that?
  17. oh yeah also a new attack feature, where you get to see what your opponent is wearing, and he gets to see what your wearing, and you attack him you can swap the skills in attack like choose strength then click on attack, after your the result, you change to what ever skill again untill you defeat him, if the fight is going no where with 0 being hit by both several times after the match will be drawn and it will give you 30 seconds till round 2,
  18. Okay i was working on a game, based on mccodes v2.3 It was a text based version of Runescape well quite simillar, i needed a few features made, the skills in my games replace energy, will etc... they are: Attack - able to equip powerful weapons Strength, - the damage is based on how high your strength is Defence, - the higer your def is the less damage you will take from other users,   I need, a quest feature where with certain items, and skills required you can do some quests, to gain exp and permission to wield certain items. i need around 150 items creates, 50 swords, 50 shields and 50 armour, names of these will be given, high items need to be more powerful. I need a grand exchange feature where you can purchase everything, so instead of leveling up to explore new city and shops its all in one, but items will have level restriction and some items can be only displayed if you are a donator/member. The grand exchange will need to be in a java/ajax or JQ form its going to be basically a whole page i will provide the graphics for it, in the search input when you type a letter it searches the letter or exact name in the database and displays the items, once you click on the item it gives the information about items, price, and what levels required or what quest needed to complete to wield it, also if its a membership item it will say you need to upgrade too wield this. In grand exchange you can purchase it, and sell things. the sell price will be ofcourse set like normal in database form and it will pull it out from there. i need new inventory created, ajax type where it displays all your items and you can drag the right items to the right cat. New training place, replacing gym i will need it to train all skills, for attack you can change the skill to attack and train on NPCs, for drops and exp, there will be different types of NPCs higer with rare item drops and good amount of gold, etc.. so you can just change the skills around what you want to train and attack NPC but! If you want to train attack you need atleast a sword, then just click on the NPcs and attack them each fight you get exp on the skills, all skills are out 99, after ever 2 levels in a skills you gain a account level. Exp are randomly given, higher NPC better exp and drops, low NPCS crap drops like 10 coins and bad exp. For now thats all more after if you think you can code these PM me with the price for each
  19. I was starting a new project, of building a game for mobiles only, just wondering what sort of games to people like to play on their phones:,
  20. Haha, hate people who act 'hard' over messangers, saying there this and that they will do this and that lol, am sure his just a kid. But seriously grow up! get out your hood dream and live the real life!
  21. not really worth nothing, you good give it to people for free, all it is, 2 big images with some text over them
  22. not even worth £0.01 lol its messy a secondary studen can do this, will take max 5-10 mins in paint or photoshop.
  23. yes i do, i had a different folder to mobile, but i want it on one route for everything but again my change
  24. there is only navigation bars on top thats all? its makes it easier for mobile devices to play etc..
  25. i used chrome my self ? what bads everything as it should be every navigation on top easy to use full screen?
×
×
  • Create New...