Jump to content
MakeWebGames

Recommended Posts

Posted

Hey if there are any newbies here new to making text based games if you are looking for some good codes to get you started i decided i will sell my codes to my little site i have running, now im no pro coder but i have some nice scripts and compiled a decent site, its a diamond in the rough, and my scripts are defiantly wayyyy better and would benefit you more than getting mccodes lite. If your interested in buying them PM me on here and we can work a deal out.

The purpose of it is for people new to making text based games to get a better start at making text based games. I have a very decent amount of scripts, i will also include the sql for the database. ;)

Posted

ight i put some of them on a free server here is the link http://www.kaname.elementfx.com/index.php its not ALL of the codes im willing to sell but its alot of them on that site, i also have some useful things to newbies coded in such as how when u reach certain locations on the travel page different sub menus appear and when u leave that location those menus disappear. Its quite a few neat things i have, like i said im no Sniko or Ruler of Zu xD but i do try my best i think i have some useful scripts.

EDIT: as usual u can sign in with demo as both username and password

Posted
I dont think that will sale the price is way to high for that.You'll be better off giving it out for free or 5$.

mccodes v2 is $100, what i have is wayyyyyy better than mccodes v2 and im asking for half the price. $5 is wayyy to cheap for what i have. Lowest i would probably go is like $20. because im not a money hungry person, im just trying raise money to upgrade my server.

Posted

Is it not based off MCCodes? Or have you just used the ideas?

Posted
its based off mccodes but it has alot more to it so like i said its wayyy more than mccodes but only a fraction of the price.

And you have a license?

Posted

Here some of my scripts just so u can get a feel for what i have here is travel.php

<?php
include "globals.php";
if($ir['jail']>0 || $ir['hospital']>0)
die("<center>You can not move around right now.");
if($ir['hp']<=1 || $ir['spirit']<=0)
die("<center>You are to exhausted to travel.");
if($ir['location_x'] < 0 || $ir['location_x'] > 29 || $ir['location_y'] < 0 || $ir['location_y'] > 18)
echo("<center>Please try stay within boundaries!");
if($end['attacking'] > 0) {
echo("You are currently in a battle, you cannot travel.");
} else {
	$user_num = $ir['level'];

	if($user_num > '5')
	{
	$user_num = '15';
	}

	$ai_level = rand(1,$user_num);
	$ai = mysql_query("SELECT * FROM `ai` WHERE `level` >= '".$ai_level."' LIMIT 1") or die(mysql_error());
	$ai = mysql_fetch_array($ai);
	$db->query("UPDATE users SET attacking={$ir['attacking']} WHERE userid=$userid");
	if(rand(1,10)==7)
	{
	echo("<font color='darkred'><cneter>You been attacked!</center></font><Br /><center><a href='engaged.php?ID={$ai['ai_ID']}'>Continue</a></center>");
               }
$direction = mysql_real_escape_string($_POST['direction']);
$direction = strip_tags($direction);

switch($direction) {

case "north":	
mysql_query("UPDATE `users` SET `location_y` = `location_y` - 1 WHERE `userid` = '$userid'") or die(mysql_error());
break;
case "south":
mysql_query("UPDATE `users` SET `location_y` = `location_y` + 1 WHERE `userid` = '$userid'") or die(mysql_error());
break;
case "east":
mysql_query("UPDATE `users` SET `location_x` = `location_x` + 1 WHERE `userid` = '$userid'") or die(mysql_error());
break;
case "west":
mysql_query("UPDATE `users` SET `location_x` = `location_x` - 1 WHERE `userid` = '$userid'") or die(mysql_error());
break;

}

echo("

<table width='100%'>
<tr><td>


<table width='100%' align='left'>
<tr class='th'><td align='center'>Travel Map</td></tr><tr><td>
<center><img src='./images/map.gif' alt='maptwo'  width='100%'/></center>
</td></tr>");

$u_end = mysql_query("SELECT * FROM `users` WHERE `userid` = '$userid'") or die(mysql_error());
$updated_end = mysql_fetch_array($u_end);

$pull_l = mysql_query("SELECT * FROM `locations` WHERE `l_x` = '".$updated_end['location_x']."' AND `l_y` = '".$updated_end['location_y']."' LIMIT 1") or die(mysql_error());

if(mysql_num_rows($pull_l) > 0) {

$pulled_l = mysql_fetch_array($pull_l);
$t_location = ' '. $pulled_l['l_name'];

} else {

$t_location = 'Desert Land';

}
if($ir['location_x'] == 10 && $ir['location_y'] == 2)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 4)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 5)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 6)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 7)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 3)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 8)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 10)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 11)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 12)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 14)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 13)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 16)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 17)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 10 && $ir['location_y'] == 18)
{
mysql_query("UPDATE `users` SET `spirit` = `spirit` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 12 && $ir['location_y'] == 18)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 12 && $ir['location_y'] == 17)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 12 && $ir['location_y'] == 16)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 12 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 13 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 14 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 18 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 19 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 20 && $ir['location_y'] == 15)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 20 && $ir['location_y'] == 16)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 20 && $ir['location_y'] == 17)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 20 && $ir['location_y'] == 18)
{
mysql_query("UPDATE `users` SET `hp` = `hp` - 5 WHERE `userid` = '$userid'") or die(mysql_error());
}
if($ir['location_x'] == 11 && $ir['location_y'] == 9)
{
mysql_query("UPDATE `users` SET `stamina` = 0 WHERE `userid` = '$userid'") or die(mysql_error());
}



echo("
<tr width='100%' class='th'><td align='center'>Your Current location is: ".$updated_end['location_x'].".".$updated_end['location_y']." - <b>$t_location</b></td></tr>
</table>");


echo("

<form action='' method='post'>
<table style='width: 429px; height: 30px;' align='left'>
 <tbody>
   <tr class='td'>
     <td align='center'>Select Direction<br>
     <table style='width: 419px; height: 35px;' align='left'>
       <tbody>
         <tr class='th'>
           <td>North <input name='direction'
value='north' type='radio'>   
      East<input name='direction'
value='east' type='radio'> 
          
   West<input name='direction'
value='west' type='radio'>    
           
    South<input name='direction'
value='south' type='radio'>
<br>
           
           
     
           <center><input name='t_submit'
value='Travel' type='submit'></center>
          </form>
           </td>
         </tr>
       </tbody>
     </table>




<table width='100%' align='left'>
<tr class='td'><td align='center'>Locations:</td></tr>
<tr><td>

<table width='100%'>
<tr class='th'><td width='50%'>Kagamino City: 7.2</td><td width='50%'>Karakura Town: 4.2</td></tr>
<tr class='th'><td width='50%'>Urahara Shop: 2.18</td><td width='50%'>Karakura High School: 6.5</td></tr>
<tr class='th'><td width='50%'>Karakura Hospital: 3.4</td><td width='50%'>Dangai World: 11.9</td></tr>
<tr class='th'><td width='50%'>Rukongai: 13.7</td><td width='50%'>Academy: 21.7 </td></tr>
<tr class='th'><td width='50%'>Seireitei: 21.9</td><td width='50%'>Central 46: 26.9</td></tr>
<tr class='th'><td width='50%'>Sokyoku Hill: 29.2</td><td width='50%'>Nest of Maggots: 27.13</td></tr>
<tr class='th'><td width='50%'>Las Noches: 16.18</td><td width='50%'>Hell: 29.18</td></tr>

</table>
</td></tr>
</table>

</td></tr>
</table>
");
}
?>

 

as u can see, there is originality in a lot of the scripts ^^

Posted

That looks like MCCode source to my naked eyes. Show me your train.php in a PM to prove me wrong?

It is illegal to sell/distribute with even 1 piece of code from the mccode source. However, you can feel free to sell the source and its license IF you own appropriate license(s) for it. Example: As you claim, your game is based off MCCodes, you want to sell it for $x, you can only sell it according to how many v2 licenses you own. When sold, you can transfer this license to another party via mccodes.com and send them the MCC based source.

Regards.

Posted

i have 3 different files that allow players to train but here is the most commonly used one

<?php
$macropage="train.php";
include "globals.php";
if($ir['hospital']) { die("This page cannot be accessed while in hospital."); }
$statnames=array(
'Strength' => 'strength',
'Speed' => 'speed',
'Defense' => 'defense',
'Accuracy' => 'accuracy',
'Health' => 'maxhp',
'Spirit' => 'maxspirit',
'Intelligence' => 'IQ',
'Regeneration' => 'regen');
$_POST['amnt']=abs((int) $_POST['amnt']);
if(!$ir['jail'])
{
print "<h3>Training Session</h3><hr />";
}
else
{
 print "<h3>Training Session</h3><hr />";
}
if($_POST['stat'] && $_POST['amnt'])
{
 $stat=$statnames[$_POST['stat']];
 if(!$stat)
 {
   die("This stat cannot be trained.");
 }
 if($_POST['amnt'] > $ir['stamina'])
 {
   print("You do not have enough stamina to train that much.<hr />");
       $gain=0;
   for($i=0; $i<$_POST['amnt']; $i++)
   {
     if($ir['spirit'] < 0) { $ir['spirit']=0; }
   }
 }
 else
 {
   $db->query("UPDATE `users` SET stamina = stamina - {$_POST['amnt']} WHERE `userid` = $userid");
   $inc=$ir[$stat]+$gain;
   $inc2=$ir['stamina']-$_POST['amnt'];
   if($stat=="strength")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} strength.";
   }
   elseif($stat=="speed")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} speed.";
   }
   elseif($stat=="defense")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} defense.";
   }
   elseif($stat=="accuracy")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} accuracy.";
   }
   if($stat=="maxhp")
   {
   $gain=$_POST['amnt']*2;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `users` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} health.";
   }
   elseif($stat=="maxspirit")
   {
   $gain=$_POST['amnt']*4;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `users` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} spirit.";
   }
   elseif($stat=="IQ")
   {
   $gain=$_POST['amnt']*.50;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} intelligence.";
   }
   elseif($stat=="regen")
   {
   $gain=$_POST['amnt']*.10;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `users` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} regeneration.";
   }
   print "<hr />";
   $ir['stamina']-=$_POST['amnt'];
   $ir[$stat]=$gain;
 }
 }
print "Choose the stat you want to train and how long you want to train it.<br />
You can train up to {$ir['stamina']} minutes.<hr />
<form action='train.php' method='post'>
Stats: <select type='dropdown' name='stat'>
<option style='color:red;' value='Strength'>Strength (Have {$ir['strength']})
<option style='color:yellow;' value='Speed'>Speed (Have {$ir['speed']})
<option style='color:blue;' value='Defense'>Defense (Have {$ir['defense']})
<option style='color:green;' value='Accuracy'>Accuracy (Have {$ir['accuracy']})
<option style='color:white;' value='Intelligence'>Intelligence (Have {$ir['IQ']})
<option style='color:red;' value='Health'>Health (Have {$ir['maxhp']})
<option style='color:blue;' value='Spirit'>Spirit (Have {$ir['maxspirit']})
<option style='color:purple;' value='Regeneration'>Regeneration (Have {$ir['regen']})
</select><br />
Time to train: <input type='text' name='amnt' value='{$ir['stamina']}' /><br />
<input type='submit' value='Train' /></form>";
$h->endpage();
?>
Posted
i have 3 different files that allow players to train but here is the most commonly used one
<?php
$macropage="train.php";
include "globals.php";
if($ir['hospital']) { die("This page cannot be accessed while in hospital."); }
$statnames=array(
'Strength' => 'strength',
'Speed' => 'speed',
'Defense' => 'defense',
'Accuracy' => 'accuracy',
'Health' => 'maxhp',
'Spirit' => 'maxspirit',
'Intelligence' => 'IQ',
'Regeneration' => 'regen');
$_POST['amnt']=abs((int) $_POST['amnt']);
if(!$ir['jail'])
{
print "<h3>Training Session</h3><hr />";
}
else
{
 print "<h3>Training Session</h3><hr />";
}
if($_POST['stat'] && $_POST['amnt'])
{
 $stat=$statnames[$_POST['stat']];
 if(!$stat)
 {
   die("This stat cannot be trained.");
 }
 if($_POST['amnt'] > $ir['stamina'])
 {
   print("You do not have enough stamina to train that much.<hr />");
       $gain=0;
   for($i=0; $i<$_POST['amnt']; $i++)
   {
     if($ir['spirit'] < 0) { $ir['spirit']=0; }
   }
 }
 else
 {
   $db->query("UPDATE `users` SET stamina = stamina - {$_POST['amnt']} WHERE `userid` = $userid");
   $inc=$ir[$stat]+$gain;
   $inc2=$ir['stamina']-$_POST['amnt'];
   if($stat=="strength")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} strength.";
   }
   elseif($stat=="speed")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} speed.";
   }
   elseif($stat=="defense")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} defense.";
   }
   elseif($stat=="accuracy")
   {
   $gain=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $gain WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} accuracy.";
   }
   if($stat=="maxhp")
   {
   $gain=$_POST['amnt']*2;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `users` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} health.";
   }
   elseif($stat=="maxspirit")
   {
   $gain=$_POST['amnt']*4;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `users` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} spirit.";
   }
   elseif($stat=="IQ")
   {
   $gain=$_POST['amnt']*.50;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `userstats` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} intelligence.";
   }
   elseif($stat=="regen")
   {
   $gain=$_POST['amnt']*.10;
   $bonus=$_POST['amnt'];
   $db->query("UPDATE `users` SET exp = exp + $bonus WHERE `userid` = $userid");
   $db->query("UPDATE `users` SET `{$stat}` = `{$stat}` + $gain WHERE `userid` = $userid");
     print "
     You have gained {$gain} regeneration.";
   }
   print "<hr />";
   $ir['stamina']-=$_POST['amnt'];
   $ir[$stat]=$gain;
 }
 }
print "Choose the stat you want to train and how long you want to train it.<br />
You can train up to {$ir['stamina']} minutes.<hr />
<form action='train.php' method='post'>
Stats: <select type='dropdown' name='stat'>
<option style='color:red;' value='Strength'>Strength (Have {$ir['strength']})
<option style='color:yellow;' value='Speed'>Speed (Have {$ir['speed']})
<option style='color:blue;' value='Defense'>Defense (Have {$ir['defense']})
<option style='color:green;' value='Accuracy'>Accuracy (Have {$ir['accuracy']})
<option style='color:white;' value='Intelligence'>Intelligence (Have {$ir['IQ']})
<option style='color:red;' value='Health'>Health (Have {$ir['maxhp']})
<option style='color:blue;' value='Spirit'>Spirit (Have {$ir['maxspirit']})
<option style='color:purple;' value='Regeneration'>Regeneration (Have {$ir['regen']})
</select><br />
Time to train: <input type='text' name='amnt' value='{$ir['stamina']}' /><br />
<input type='submit' value='Train' /></form>";
$h->endpage();
?>

At what name is your license under?

Posted
At what name is your license under?

why is that needed to be ask? i most of the codes i got from the mccodes website i dont even use because i didnt like them, most of my scripts i compiled by reading threads on here and making my own version based off what i see. But my license was a one of the free mccodes licenses

Posted
why is that needed to be ask? i most of the codes i got from the mccodes website i dont even use because i didnt like them, most of my scripts i compiled by reading threads on here and making my own version based off what i see. But my license was a one of the free mccodes licenses

I ask because if you had a license PM me. You are not allowed to sell the free versions, and by guessing that you don't have a license for a paid version so you cannot sell it, a DMCA will be sent.

EDIT: due to our close relationship with x10hosting your site has been shut down

Posted

yea Zu just informed me i didnt know at first, i assume this thread will be locked or deleted soon i guess, i was just trying help people out while raising money for a good server in the process xD didnt know mccodes was that strict.

Posted

dmca received - unlicensed mccodes install, do not unsuspend [purchasing software not an option as this is a verified dmca].

damn somebody got me suspended =( cruel world

not that serious imo, but i guess the things people will do for money...

Posted
dmca received - unlicensed mccodes install, do not unsuspend [purchasing software not an option as this is a verified dmca].

damn somebody got me suspended =( cruel world

Yes I did... read my edit

Posted
mccodes v2 is $100, what i have is wayyyyyy better than mccodes v2 and im asking for half the price. $5 is wayyy to cheap for what i have. Lowest i would probably go is like $20. because im not a money hungry person, im just trying raise money to upgrade my server.

I'll choose v2 over that anytime

Posted
Yes I did... read my edit

I must say that was very unprofessional sending a DMCA as its obvious that he didnt know what he was doing.As their many unlicense mccode v2 games out thats making profit.

Posted

Hi Daron,

It appears that you have misunderstood the license terms. We have taken down your hosting for breaching copyright.

You cant resell the mccode software as it's licensed and copyrighted under the law accordingly. However, you can sell/distribute the modules you make or/and have rights to at any place you want. MCCodes.com marketplace possibly.

Feel free to PM me, email me ([email protected]) or skype call me (mccodes) to clarify things.

Regards,

CB.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...