-
Posts
3,713 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Zero-Affect
-
Ajax chat you say... Looking forward to that :D Good luck, I'm sure it will be very good
-
looks like a fun website, im curious is it mc v2?
-
right so since the mod was bought from cronwerks this week... you mysteriously just updated it eh;) Get over it darling we know you can't code, hence the buying of other peoples mods.
-
Welcome to MWG kyle, Good luck on learning rather PHP or JAVA.
-
the version purchased was lately obvious i mean a simple SELECT for gangdata wouldn't be needed in generic MC v2 inventory eh? Maybe gangCRYSTALS=gangCRYSTALS=$zerocost changed to gangCRYSTALS=gangCRYSTALS-$zerocost then gangCRYSTALS=gangCRYSTALS=$needed changed to gangCRYSTALS=gangCRYSTALS-$needed Considering i've looked over your entire code i can truly say you are the worst coder i have ever seen You said you have 'Style' i wouldn't call 'wtf am i doing' a style, how on earth you actually sell your work is amazing, no wonder your broke and cronwerks sells 1 code a month (of yours). ^Is that the best way to talk to someone complaining about your work? I hope your not implying i got your mod illegally because if you are you better have proof or it's SLANDER. Considering i defended you earlier by stating everyone makes a mistake, well you have been coding longer than me yet you code like it was your first mod and even make simple mistakes allowing negative integers... Reply with AntiSocial comments and then it just simply shows your great business skills. One question, is it a v1 mod converted to v2? Since you're going to deny my fixes above even helped... continue to get this post deleted, since obviously you'll not sell another copy on MWG till you get it fixed to actual standards rather than something you could find on google.
-
Cronus i've recently installed your mod on a website and noticed that it's got more holes than fishnet tights, Seriously you call yourself a professional coder, I would personally advice no one to buy mods created/edited by Cronus due to them being the most unrealistic POS ever created. Don't give up your day job. Wow when looking over the code i've had to input DB SELECT's and wtf is your issue with * i mean it's everywhere... my little brother could do better than this and he's got ADHD and dyslexic...
-
lmao @ this post, crystal market... So when the creator of google went to his coders and said "i want a search engine" they automatically called him a script kiddie and said he cant call it his own... Ben its a very simple mod, you say you will code for free yet this proves you cannot code, worrying...
-
when using a GET or POST which will only have numeric content (EVER) i like to use something like the following $_POST['ID'] = (ctype_digit($_POST['ID']) AND !empty($_POST['ID'])) ? $_POST['ID'] : '' ; $_GET['ID'] = (ctype_digit($_GET['ID']) AND !empty($_GET['ID'])) ? $_GET['ID'] : '' ;
-
Looks like it's going to be fun to watch it grow and even participate at some point. Good Luck
-
Normally i find the higher the price the more experience / capability for work.
-
looks fun, tell your mate good job
-
lol i do believe it's a group project meaning equal share therefore you choose not be asked. Please code for me! lol
-
[mccodes any] Small mod to make ur game look good
Zero-Affect replied to Dayo's topic in Free Modifications
im sorry but would not using array key be so much simpler? -
Bounty Alright, enough lads. This really should be in a mod request section (if there is one) but personally maybe best in the trash as most of the posts are... Lazy - I agree with you, i won't open notepad for less than 30 quid profit overall, BESIDES for FREE mods or for MYSELF FireCamp - I truly would suggest if you say it's simple then do it yourself.. I actually do and have sold a bounty script for 20.00 and had no complaints (5 copies still available). AV bounty/Hitmanlist [20.00]
-
yeah i totally misinterpreted the the situation.
-
lol could of simply done that on the first post m8
-
i gotta ask MD backlinks or just plain content, the reason for the recent XBOX and PC games posts. This game looks amazing, should probably do something on the Liberty City stories MD they are popular, sadly i chose ps3 over xbox lol
-
I was actually planning on making something like this for my game but maybe abit more advanced, good luck with sales mate
-
that's not very nice, shall i do it with one of your new mods?
-
Hope this will help it is abit old but i believe it could help. <?php include_once (DIRNAME(__FILE__) . "/globals.php"); $_GET['ID'] = (ctype_digit($_GET['ID']) AND !empty($_GET['ID'])) ? abs((int) $_GET['ID']) : '' ; $_GET['price'] = (ctype_digit($_GET['price']) AND !empty($_GET['price'])) ? abs((int) $_GET['price']) : '' ; $_GET['QTY'] = (ctype_digit($_GET['QTY']) AND !empty($_GET['QTY'])) ? abs((int) $_GET['QTY']) : '' ; if($_GET['price']) { $q=$db->query("SELECT iv.`inv_qty`, `inv_itemid`, `inv_id`, i.`itmname` FROM inventory iv LEFT JOIN items i ON iv.inv_itemid=i.itmid WHERE inv_id={$_GET['ID']} and inv_userid=$userid"); if($db->num_rows($q) == 0) { echo "Invalid Item ID"; } else { $r = $db->fetch_row($q); if($r['inv_qty'] < $_GET['QTY']): echo ' You do not have enough of this item. '; $h->endpage(); exit; endif; $checkq = sprintf('SELECT `imID` FROM `itemmarket` WHERE imITEM = %u AND imPRICE = "%.0f" AND imADDER = %u', $r['inv_itemid'], $_GET['price'], $userid); $checkq = $db->query($checkq); if($db->num_rows($checkq)): $cqty = $db->fetch_row($checkq); $query = sprintf('UPDATE `itemmarket` SET imQTY = imQTY + %u WHERE imID = %u', $_GET['QTY'], $cqty['imID']); $db->query($query); else: $db->query("INSERT INTO itemmarket VALUES ('','{$r['inv_itemid']}',$userid,{$_GET['price']}, '{$_GET['currency']}', '{$_GET['QTY']}')"); endif; item_remove($userid, $r['inv_itemid'], $_GET['QTY']); $db->query("INSERT INTO imarketaddlogs VALUES ( '', {$r['inv_itemid']}, {$_GET['price']}, {$r['inv_id']}, $userid, unix_timestamp(), '{$ir['username']} added {$r['itmname']} x{$_GET['QTY']} to the itemmarket for {$_GET['price']} {$_GET['currency']}')"); echo "Item added to market."; } } else { $q = $db->query("SELECT COUNT(`inv_id`) AS `inv_count` FROM `inventory` WHERE `inv_id` = {$_GET['ID']} AND `inv_userid` = $userid"); $r=$db->fetch_row($q); if($r['inv_count']==0) { echo "Invalid Item ID"; } else { print "Adding an item to the item market... <form action='imadd.php' method='get'> <input type='hidden' name='ID' value='{$_GET['ID']}' /> Quantity: <input type='text' name='QTY' value=''> Price: <input type='text' name='price' value='0' /> <select name='currency' type='dropdown'><option value='money'>Money</option><option value='crystals'>Crystals</option></select> <input type='submit' value='Add' /></form>"; } } $h->endpage(); ?>
-
and the CSS would be?
-
if ( $ir['jail'] AND $ir['hospital'] ) { echo ' You are in jail for '.$ir['jail'].' minute(s) and hospital for '.$ir['hospital'].' minute(s). Click [url="index.php"]here[/url] to go home. '; $h->endpage(); exit; } elseif ( $ir['jail'] OR $ir['hospital'] ) { $error_prispital = ($ir['jail']) ? 'jail' : 'hospital' ; $error_prispital_time = ($ir['jail']) ? $ir['jail'] : $ir['hospital'] ; echo ' You are in '.$error_prispital.' for '.$error_prispital_time.' minute(s). Click [url="index.php"]here[/url] to go home. '; $h->endpage(); exit; } Thought it may help, it's edited to fit MC from my script so if there is any issues please let me know.
-
I would of never of thought of that one lol
-
more options in hall of fame
Zero-Affect replied to thedestroyer's topic in Requests & In Production
i use i think 2 Fetch queries in HOF -
job snin off mod wanted, will pay for a good one.
Zero-Affect replied to Mcfarlin's topic in Requests & In Production
considering the * i dont think multiple lines is a issue really