-
Posts
3,137 -
Joined
-
Last visited
-
Days Won
35
Content Type
Profiles
Forums
Events
Everything posted by Djkanna
-
iamwicked, oh my. mrdjk00 I don't play to often, but when I do it's usually GTA, Terraria or Euro Truck simulator.
-
Locked, not the appropriate place for this kind of bickering. Any legitimate offers, take to PM. Any valid 'proven' claims to ownership, please contact myself or another member of the staff team, and we shall attempt to get to the bottom of it.
-
Reece - A.K.A "Splash" - Stolen Template
Djkanna replied to W3Theory || Peter's topic in Collaboration Experiences
Pretty sure, the fact he offered it to you would define "intent to distribute" irregardless of whether you accepted or not, so that's isn't really a valid excuse for accepting "stolen items". Either way, this is not the point of the thread, I do not care what it is you two have going on with each other, but I do know it has nothing to do with this specific template. I think the best course of action is to stop it here and let everyone form their own opinions on the matter. It is up to the owner of the template to pursue further action against Reece. -
Reece - A.K.A "Splash" - Stolen Template
Djkanna replied to W3Theory || Peter's topic in Collaboration Experiences
The first one, yes is somewhat relevant, the following posts not so much. The first one, also shows you accepting an offer for a zip of templates Reece "ripped", so you're not entirely innocent in this, just not stupid enough to actually use the templates ( or have you? ) -
Reece - A.K.A "Splash" - Stolen Template
Djkanna replied to W3Theory || Peter's topic in Collaboration Experiences
Great, but why are you posting "evidence" against Reece, when the evidence you've provided has nothing to do with the whole template sale/rip issue at hand? If you wish to make us aware of Reece's shady actions against you and "everyone" then you should really have created a new thread, posting what evidence you have against him, rather than cluttering up this already cluttered thread. Edit: Also questions remain unanswered. :) -
*Plays for a bit, enjoys. *Cheats *Doesn't enjoy anymore. Nice work Script. :)
-
Reece - A.K.A "Splash" - Stolen Template
Djkanna replied to W3Theory || Peter's topic in Collaboration Experiences
So after 10 pages of non-stop bickering, all it has amounted to is: Guest likes Midgets, well isn't that productive? I'll make one point: Why is no one looking at the owner of the template? I mean no one is taking Reece's, Jason's or Death's word at face value, why are you taking the owners denial of selling the template on at face value? I'm not implying the owner is lying, just a mere suggestion as the thread is from what I have seen being clouded by what seems to be a partnership gone sour between Reece and Jason-X, rather than actually attempting to get to the bottom of the problem. Summary: Peter created the template ( proved ) Owner of template did not sell the template on ( Unproven, taken on blind faith - not easy to dispute though ) Death-XXX sold the template to Reece ( Unproven, denied by Death ) Reece bought said template ( Unproven ) Something about Reece ripping the template ( Well bloody hell will someone make up their mind ) Sniko is a modern day Jessica Fletcher. Questions: Did the owner of the template sell the template to Death? If not how did Death acquire this template in order to sell it on, if in fact he did? How did Reece actually acquire this template? What role does Jason play in this transaction, as he seems to be providing "evidence"? How did we find out that Reece has this template. -
Totally off topic but welcome back. :)
-
List of Trusted Coder and Scammers - Chosen By You
Djkanna replied to Script47's topic in Collaboration Experiences
Thanks for the mention [MENTION=69670]Script47[/MENTION].:) -
You have no idea, it totally freaked me out too. [MENTION=70347]NonStopCoding[/MENTION]: Thanks.
-
This is not mean enough man! Thanks buddy :)
-
Try it this way: function craft() { global $ir, $h, $db, $userid; $already_crafting = $db->query("SELECT `userid`,`item_given` FROM `craft_inprogress` WHERE `userid`={$userid}"); if($db->num_rows($already_crafting)) { echo "<div class='error'>You are already crafting!</div>"; exit($h->endpage()); } if(!$_GET['id']) { index(); exit($h->endpage()); } $_GET['id'] = filter_var($_GET['id'], FILTER_VALIDATE_INT) ? abs( (int) $_GET['id']) : 0; $exist = $db->query("SELECT * FROM `craft_mod` WHERE `id`={$_GET['id']}"); if($db->num_rows($exist) == 0) { echo "<div class='error'>We couldn't find the blueprints for the item you wanted to craft!</div>"; exit($h->endpage()); } $r = $db->fetch_row($exist); if($r['donator'] AND $ir['donatordays'] == 0) { echo "<div class='error'>You cannot craft this item!</div>"; exit($h->endpage()); } $item_given = $db->fetch_row($db->query("SELECT `itmname` FROM `items` WHERE `itmid`={$r['item_given']}")); ?> <h3>Crafting; <?php echo $item_given['itmname']; ?></h3> <?php $can_craft = TRUE; $ex = explode(",", $r['items_needed']); $qty = explode(",", $r['qty_needed']); $n = 0; $items_needed = ''; foreach($ex as $i) { $get_items_needed = $db->query("SELECT `itmname` FROM `items` WHERE `itmid`={$i}"); $t = $db->fetch_row($get_items_needed); $do_they_have = $db->query("SELECT `inv_itemid` FROM `inventory` WHERE `inv_userid`={$userid} AND `inv_itemid`={$i} AND `inv_qty`>={$qty[$n]}"); if($db->num_rows($do_they_have) == 0) { $items_needed .= $t['itmname']." x ". $qty[$n].","; $can_craft = FALSE; } $n++; } if( trim ( $items_needed ) != '' ) { $criteria = "You need the following items;".$items_needed.""; } unset($n); if($r['level_needed'] > $ir['level']) { $criteria .= "You need to advance in level before you can craft this item"; $can_craft = FALSE; } if($r['money_needed'] > $ir['money']) { $criteria .= "You need more money before you can craft this item"; $can_craft = FALSE; } if($r['coins_needed'] > $ir['coins']) { $criteria .= "You need more coins before you can craft this item"; $can_craft = FALSE; } if($r['minimum_days'] > $ir['daysold']) { $criteria .= "You need to wait ". $ir['minimum_days'] - $ir['daysold'] ." days before you can craft this item"; $can_craft = FALSE; } if($r['course_needed']) { $get_course = $db->query("SELECT `name` FROM `education_courses` WHERE `ID`={$r['course_needed']}"); $co = $db->fetch_row($get_course); $have_i_completed = $db->query("SELECT `userid` FROM `education_coursesdone` WHERE `userid`={$userid} AND `courseid`={$r['course_needed']}"); if($db->num_rows($have_i_completed) == 0) { $criteria .= "You need to complete the ".$co['name']." course before you can craft this item"; $can_craft = FALSE; } } if($can_craft) { if($r['time_to_complete'] > 0) { ?> <div class='notice'>The <?php echo $item_given['itmname']; ?> is in progress of crafting!</div> <?php $time = time() + $r['time_to_complete']; $db->query("INSERT INTO `craft_inprogress` (`userid`,`item_given`,`endtime`) VALUES ({$userid}, {$r['item_given']}, {$time})"); } else { ?> <div class='notice'>You have successfully crafted <?php echo $item_given['itmname']; ?>. You put it in your inventory!</div> <?php item_add($userid, $r['item_given'], 1); } $ex = explode(",", $r['items_needed']); $qty = explode(",", $r['qty_needed']); $n = 0; foreach($ex as $i) { item_remove($userid, $i, $qty[$n]); $n++; } unset($n); unset($ex); unset($qty); if($r['money_needed']) { $db->query("UPDATE `users` SET `money`=`money`-{$r['money_needed']} WHERE `userid`={$userid}"); } if($r['coins_needed']) { $db->query("UPDATE `users` SET `coins`=`coins`-{$r['coins_needed']} WHERE `userid`={$userid}"); } exit($h->endpage()); } else { echo "<div class='error'><strong>You cannot craft this item, for the following reasons;</strong>".$criteria."</div>"; exit($h->endpage()); } }
-
Could you post the original snippet of code before these edits?
-
Set the items_needed variable prior to line 178. So say if 178 is in a loop you'd do something like: //[...] $items_needed = ''; foreach ( $arr as $key => $val ) { //code $items_needed .= $needs . ","; //code } //[...]
-
^This. I like Android, but iOS all the way.
-
Well now I've just got to recommend him too! *is a sheep and follows. Decent guy.
-
Yes, Direwolf20 and Agrarian Skies. :)
-
The root of all my productivity issues.
-
[ATTACH=CONFIG]1424[/ATTACH] I cleaned it up a little bit for you. Usually there's not one bit of free space at all. *Eliza Dushku for the win. ;)
-
Cate Blanchett
-
Yup it's a great show, only lasted 3 seasons so it's a great show to pick up and watch when you've got a free weekend. :)
-
Yep, we will have fun without you. :)
-
Moved posts into a new Chit Chat thread. Does say discuss what we like, and I don't really see the issue of speaking about past actions. Considering half of the old staff stuff was public since we moved to VB up until a few weeks - a couple of months ago.
-
2 reasons why I cannot ban him. 1): The same issue you ran into, having to convince those higher up. 2): See 1, don't have the permissions to completely ban outright... Also this is probably not a discussion for this specific thread? - I don't have any qualms about stating my opinions on The Coder's account status in a public way, just don't feel like Guest would appreciate me jacking his thread to talk about The Coder.
-
What? Whilst you were giving him more warnings I was like: "I'd suggest temp banning him, hell ban him completely for being a total ass." Isn't that enough? Hehe. I agree though from when it was first brought up it definitely took to long to come to a agreed action. And would you look he and his unhelpful comments are still here. I am off-topic now, sorry.