
Pitch Black
Members-
Posts
19 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Pitch Black
-
accept goods sent instead of just auto accept
Pitch Black replied to marvin's topic in General Discussion
You could keep it to 1 table gurpreet: Add 2 columns `pending` and `pending_amt` to inventory, if an item is sent fill pending with the user id it is being sent to, otherwise keep it clear. -
@modernmafia; read what Nickson posted ;)
-
As Spudinski already said... @Hitman: Try and look up the functions that Spudinski posted in his original reply. If you have trouble after trying to piece it together yourself, post your attempt and well try to guide you further.
-
It is free to sign up, however, as with most payment services they charge a fee per transaction based on previous monthly sales volumes. You can take a look at their fee chart here: http://www.onebip.com/fees.html
-
According to there signup form, however, there is?: "Please note: You will be charged an activation fee of EUR 1,000 before going live with DaoPay." - http://www.daopay.com/about/contact.php
-
There is a DaoPay activation fee of EUR 1,000, so this service should only be considered if you are serious about what you are doing. A few months ago after researching methods of payment I discovered DaoPay, and I do plan to integrate it for users to utilize as a form of payment, however, it would be great to hear feedback from anyone who has used it in the past?
-
I like what I am currently using :D Ubuntu 10.04, Apache, PHP/MySQL(PHPMyAdmin as a DB manager), NOCC mail client, and AWStats
-
From what I have read in the past week or so, it is Google taking another shot at web-related programming. It's an open source and OO Class based mix of C and Java type style/syntax; and it can supposedly be compiled into JavaScript to run in browsers easily. Take a look at the official Google Blog below: http://googlecode.blogspot.com/2011/10/dart-language-for-structured-web.html
-
Very interesting take on toplists, made by the gamers for gamers! This verification system will really make you stand out and I wish you luck.
-
You first came in chat saying you want a hack made, clearly impatient about it, and then make two threads about it. Here's the most help you will probably find with that attitude: http://lmgtfy.com/?q=myspace+dog+wars+bot
-
Kieran-R, things like understanding those rights are important before you go off re-selling things like this, seeing copies of something you assumed you were buying full rights of is very discouraging and will hurt the reputation of the distributor. I left a thread less than 5 minutes ago, where you were basically "re-selling" simple quick-fixes to McCodes found among these very forums. I don't know you, but to be honest, this doesn't show much in terms of the quality of your professionalism, all it shows is you're here to make a quick buck.
-
An interesting find, A moderator should have this thread locked or possibly deleted so people are not to contact this user before reading the thread, as this person is obviously using stolen graphics.
-
These all seem like simple copy/paste jobs...
-
You know jaymo, there are alot of links to resources for learning basic PHP and MySQL. People are more willing to help those who atleast make an attempt at something, and, considering all of your posts have been requests for free GRPG mods, you should try learning or helping others get a good grasp on this engine. This site is not just for giving out free modifications, it is more of a collaboration-experience where you can learn from both fellow PHP developers, and game owners.
-
Minute Converter [NEEDED] Will Pay
Pitch Black replied to Blade Maker's topic in Requests & In Production
Not a problem Blade Maker. :) -
Minute Converter [NEEDED] Will Pay
Pitch Black replied to Blade Maker's topic in Requests & In Production
I'm sorry about that wait, updated, tested, and working now. enjoy :) -
Minute Converter [NEEDED] Will Pay
Pitch Black replied to Blade Maker's topic in Requests & In Production
looked it over and it appears I put flipped my ternary, try whats there now :) -
Minute Converter [NEEDED] Will Pay
Pitch Black replied to Blade Maker's topic in Requests & In Production
function min_converter($x) { unset($uw,$ud,$uh,$um); if(($x/10080) >= 1){ $w=floor($x/10080); $uw=$w." Week(s) "; $x=$x-(floor($x/10080)*10080);} if(($x/1440) >= 1){ $d=floor($x/1440); $ud=$d." Day(s) "; $x=$x-(floor($x/1440)*1440);} if(($x/60) >= 1){ $h=floor($x/60); $uh=$h." Hour(s) "; $x=$x-(floor($x/60)*60);} if($x >= 1){ $um=$x." Minute(s) "; } return $uw.$ud.$uh.$um; } should work :)