Requests/Helps, ty =)

10/19/2008 01:02 BlooD-BoY#1
So my first request is, where and how can i make people that get killed by monster/player drop their items/gold in INV?

Second one is lol, when a person is red/black and some one kills em they dun drop items O.O any ideas? lolz thx

and btw, i saw a guide not long ago, on how to add new items to your server any idea where it is? thx O.O

last one, a simple page, that has like umm the top "Players" "Level" "KO" and so on O.O only one simple page...thx =)
10/19/2008 15:35 tao4229#2
First and 2nd aren't too hard to do..
And 3rd, there is a search button for a reason.
10/19/2008 16:44 BlooD-BoY#3
Quote:
Originally Posted by tao4229 View Post
First and 2nd aren't too hard to do..
And 3rd, there is a search button for a reason.
lolz to tell u the truth, i always and i mean always use the search button, then if i dun find it i go through like 10-15 pages, if i still dun find it i ask O.O so thats y i asked...XD
10/19/2008 16:48 tao4229#4
Quote:
Originally Posted by BlooD-BoY View Post
lolz to tell u the truth, i always and i mean always use the search button, then if i dun find it i go through like 10-15 pages, if i still dun find it i ask O.O so thats y i asked...XD
If you look through ArcherMaster's big post with all those releases, the adding weapon guide is on there.
10/19/2008 16:55 XxArcherMasterxX#5
Quote:
Originally Posted by tao4229 View Post
If you look through ArcherMaster's big post with all those releases, the adding weapon guide is on there.
i think he means to say that the thread from dragon.... about making your own stuff in your server (i didnt found the guide so i cant add it to my big thread:p)
10/19/2008 17:02 tao4229#6
Quote:
Originally Posted by XxArcherMasterxX View Post
i think he means to say that the thread from dragon.... about making your own stuff in your server (i didnt found the guide so i cant add it to my big thread:p)
I know, that's what i meant.. The link is in there..
10/19/2008 17:08 XxArcherMasterxX#7
Quote:
Originally Posted by tao4229 View Post
I know, that's what i meant.. The link is in there..
ok:p
10/19/2008 18:15 pauldexter#8
the last one isn't to hard, i learned it from roseonline cms.
i give the sample of the level ranking page.
Code:
  <strong>[ <a href="?op=ranking_level&rank=10">Top 10</a> ] [ <a href="?op=ranking_level&rank=50">Top 50</a> ] [ <a href="?op=ranking_level&rank=100">Top 100</a> ] [ <a href="?op=ranking_level&rank=200">Top 200</a> ]</strong><br /> 
  <br />
  <br />
  <?php
  
$link = mysql_connect('localhost', 'root', 'root')
    or die('Could not connect: ' . mysql_error());
echo '<b></b>';
mysql_select_db('coproj') or die('Could not select database');

if($_GET['rank'] == '') {
$rank = '10';
}
if($_GET['rank'] == '50') {
$rank = '50';
}
if($_GET['rank'] == '100') {
$rank = '100';
}
if($_GET['rank'] == '200') {
$rank = '200';
}
if($_GET['rank'] == '10') {
$rank = '10';
}


$result = mysql_query("SELECT level, charname FROM characters ORDER BY level DESC LIMIT ".$rank."") 
or die(mysql_error());  


echo "<table border='0'>";
echo "<tr> <th>Level &nbsp;  &nbsp; &nbsp; &nbsp; </th> <th>Character  Name &nbsp;  &nbsp; &nbsp; &nbsp; </th>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {

	// Print out the contents of each row into a table
	echo "<tr><td bgcolor=''>"; 
	echo $row['level'];
	echo "</td><td bgcolor=''>"; 
	echo $row['charname'];	
} 

echo "</table>";
?>
  <?php
echo "</p>";
?>
just edit it to make a ko ranking and etc.
10/19/2008 20:02 BlooD-BoY#9
Quote:
Originally Posted by pauldexter View Post
the last one isn't to hard, i learned it from roseonline cms.
i give the sample of the level ranking page.
Code:
  <strong>[ <a href="?op=ranking_level&rank=10">Top 10</a> ] [ <a href="?op=ranking_level&rank=50">Top 50</a> ] [ <a href="?op=ranking_level&rank=100">Top 100</a> ] [ <a href="?op=ranking_level&rank=200">Top 200</a> ]</strong><br /> 
  <br />
  <br />
  <?php
  
$link = mysql_connect('localhost', 'root', 'root')
    or die('Could not connect: ' . mysql_error());
echo '<b></b>';
mysql_select_db('coproj') or die('Could not select database');

if($_GET['rank'] == '') {
$rank = '10';
}
if($_GET['rank'] == '50') {
$rank = '50';
}
if($_GET['rank'] == '100') {
$rank = '100';
}
if($_GET['rank'] == '200') {
$rank = '200';
}
if($_GET['rank'] == '10') {
$rank = '10';
}


$result = mysql_query("SELECT level, charname FROM characters ORDER BY level DESC LIMIT ".$rank."") 
or die(mysql_error());  


echo "<table border='0'>";
echo "<tr> <th>Level &nbsp;  &nbsp; &nbsp; &nbsp; </th> <th>Character  Name &nbsp;  &nbsp; &nbsp; &nbsp; </th>";
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {

	// Print out the contents of each row into a table
	echo "<tr><td bgcolor=''>"; 
	echo $row['level'];
	echo "</td><td bgcolor=''>"; 
	echo $row['charname'];	
} 

echo "</table>";
?>
  <?php
echo "</p>";
?>
just edit it to make a ko ranking and etc.
thx, and ty all guys ;P i'ma go eat and then check the post, cuz i havent seen it there last time i checked O.O
10/20/2008 12:03 Rechocto#10
Tao, I don't remember if it was you or Taguro that I gave the dropping items on death and dropping equips if red\black named, both dependent on pk points, but if it was you, then saying "that's easy" -- that's kinda like taking responsibility for my code? :o
10/20/2008 13:33 BlooD-BoY#11
Quote:
Originally Posted by Rechocto View Post
Tao, I don't remember if it was you or Taguro that I gave the dropping items on death and dropping equips if red\black named, both dependent on pk points, but if it was you, then saying "that's easy" -- that's kinda like taking responsibility for my code? :o
lolz, thats funny XD and kinda sad
one prob...i can't find the "How to add new items to your server" or w/e it was called guide :P one of u said that it was in the "All in one" post O.O but it's not there
10/20/2008 21:30 DragonStar#12
@BlooD-BoY - i had a mod remove my guide

then sum guy "Djago160" re-posted it from google cache, i had to delete my pics
from photo bucket, n if he does not remove it asap i will not make a guide on how to
make new spells and new classes, not sure if i even will do that b/c atm im extremely
pissed off, ppl posting other ppls stuff w/out ther permission is bs. if i dnt post a guide
how to make new spells and classes you all can thank Djago160 for pissing me off
10/20/2008 21:40 µ~Xero~µ#13
Quote:
Originally Posted by DragonStar View Post
@BlooD-BoY - i had a mod remove my guide

then sum guy "Djago160" re-posted it from google cache, i had to delete my pics
from photo bucket, n if he does not remove it asap i will not make a guide on how to
make new spells and new classes, not sure if i even will do that b/c atm im extremely
pissed off, ppl posting other ppls stuff w/out ther permission is bs. if i dnt post a guide
how to make new spells and classes you all can thank Djago160 for pissing me off
:(

Cmon^^
10/20/2008 21:50 © Haydz#14
thanks djago
10/20/2008 22:08 BlooD-BoY#15
Quote:
Originally Posted by DragonStar View Post
@BlooD-BoY - i had a mod remove my guide

then sum guy "Djago160" re-posted it from google cache, i had to delete my pics
from photo bucket, n if he does not remove it asap i will not make a guide on how to
make new spells and new classes, not sure if i even will do that b/c atm im extremely
pissed off, ppl posting other ppls stuff w/out ther permission is bs. if i dnt post a guide
how to make new spells and classes you all can thank Djago160 for pissing me off
ic well thx for responding and yeah its kinda sad that ppl can't make their own guides..and they need to copy others -.-"