- Impact
- 11
So...you have 10 domains at NamePros. You want to earn some NP$. What do you do?
NamePros Parking.
Its basically a parking page, with a cron script that runs hourly. It gets the revenue generated in the past hour from the domain in question, determines which user owns it, and adds x NP$ into the user's account. Just like NameDrive, except its automated and pays in NP$.
Example:
VARIABLE DEFINITIONS:
p-Payout
r-Revenue generated from the names
m-Modifier (i.e. percentage to pay out divided by 100)
e-Exchange rate between NP$ and USD (0.02)
FORMULA (EXAMPLE):
p = (r(m))/e
Something like that. If you wanted, for example, to give the user 5% of revenue, at a .02 exchange rate:
p = (r(.05))/.02
Assuming that r is...$5
p = (5(.05))/.02
p = 12.5
User gets 12.5 NP$ added to their account.
Just a thought :tu:
NamePros Parking.
Its basically a parking page, with a cron script that runs hourly. It gets the revenue generated in the past hour from the domain in question, determines which user owns it, and adds x NP$ into the user's account. Just like NameDrive, except its automated and pays in NP$.
Example:
VARIABLE DEFINITIONS:
p-Payout
r-Revenue generated from the names
m-Modifier (i.e. percentage to pay out divided by 100)
e-Exchange rate between NP$ and USD (0.02)
FORMULA (EXAMPLE):
p = (r(m))/e
Something like that. If you wanted, for example, to give the user 5% of revenue, at a .02 exchange rate:
p = (r(.05))/.02
Assuming that r is...$5
p = (5(.05))/.02
p = 12.5
User gets 12.5 NP$ added to their account.
Just a thought :tu:




