Jump to content

sekker

Members
  • Posts

    32
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About sekker

Profile Information

  • Gender
    Not Telling

sekker's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. I would really appreciate if you adapt this code to work with l2jfree G3 >.< i've been trying to adapt it without any success.
  2. Is there any chance that you help me to adapt the code for l2jfree g3?
  3. Extreme im trying to compile your vote system in L2JFree Gracia final, everything goes fine, server goes up without any problem, but it seems that is not working? it doesnt show anything in the console nor the java logs nor ingame :S I would really appreciate some help.
  4. Tnks for the share man, im trying to adapt it to L2JFree (Gracia Final) but im getting the following error when i try to compile: [ERROR] BUILD FAILURE [iNFO] ------------------------------------------------------------------------ [iNFO] Compilation failure /media/NuevoVol/L2JFree/l2jfree-core/src/main/java/com/l2jfree/gameserver/instancemanager/AutoVoteRewardHandler.java:[75,47] cannot find symbol symbol : method isDetached() location: class com.l2jfree.gameserver.network.L2GameClient I would really appreciate any help that you can give me, fixing this issue.
  5. I love what you have done with giran "like aden" tnks for this share ^^
  6. Where the hell can i activate this part? i have just made an item which last 24 hours, but i haven't been able to make the countdown appear in the item description. I would really appreciate some help here ^^
  7. I tried to compile but i got the following: [iNFO] ------------------------------------------------------------- [ERROR] COMPILATION ERROR : [iNFO] ------------------------------------------------------------- [ERROR] \L2JFree\l2jfree-core\src\main\java\com\l2jfree\gameserver\model\actor\L 2Npc.java:[2604,9] '.class' expected [ERROR] \L2JFree\l2jfree-core\src\main\java\com\l2jfree\gameserver\model\actor\L 2Npc.java:[2604,2] not a statement [ERROR] \L2JFree\l2jfree-core\src\main\java\com\l2jfree\gameserver\model\actor\L 2Npc.java:[2604,16] illegal start of expression [ERROR] \L2JFree\l2jfree-core\src\main\java\com\l2jfree\gameserver\model\actor\L 2Npc.java:[2604,25] ';' expected [ERROR] \L2JFree\l2jfree-core\src\main\java\com\l2jfree\gameserver\model\actor\L 2Npc.java:[2606,2] 'else' without 'if'
  8. Tnks for your reply, and actually I made the changes in the correct section, as i said before im using l2jfree Rev 8500. I dont know if it can help but here i leave you the original L2NPC.java from the rev im using. http://pastebin.com/aWJ3i6C1
  9. Dude if im asking is because i havent been able to make it work, i have just applied the patch and it compiles correctly, but once the server is running any mob gives xp. so thats why im asking for help Here is the code i made using as base the code submited by ZnX { double rateXp = getStat().calcStat(Stats.MAX_HP, 1, this, null); if (getInventory().getItemByItemId(100005) == null) return (int) (getTemplate().getRewardExp() * rateXp * Config.RATE_XP); else return (int) (getTemplate().getRewardExp() * rateXp * Config.RATE_XP * 2); }
  10. is there any chance that you modify this to work with l2jfree?
  11. Nope it didn't work :s here i leave you my whole php file, maybe im doing something wrong. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>GrandBoss Status By Leki</title> <style type="text/css"> <!-- body,td,th { color: #CCCCCC; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; } body { background-color: #000000; } --> </style> </head> <body> <table style="border: 1px solid; border-color: #444444; background-color:#222222;" align="center" width="100%"> <tr> <th class='Stil7' colspan="5">Grand Boss Status</th> </tr> <tr> <th width="5%" style="border: 1px solid; border-color: #444444; background-color:#222222;"> No </th> <th width="35%" style="border: 1px solid; border-color: #444444; background-color:#222222;"> Boss </th> <th width="19%" style="border: 1px solid; border-color: #444444; background-color:#222222;"> Level </th> <th width="19%" style="border: 1px solid; border-color: #444444; background-color:#222222;"> Status </th> <th width="20%" style="border: 1px solid; border-color: #444444; background-color:#222222;"> Respawn time </th> </tr> <?php require("Config.php"); $activity = mysql_query("SELECT grandboss_spawnlist.respawn_time, npc.name, npc.level FROM grandboss_data LEFT JOIN npc ON grandboss_spawnlist.boss_id = npc.id ORDER BY npc.level DESC"); $i = 1; while($row = mysql_fetch_array($activity)) { if (!($i%2)) echo "<tr bgcolor='#000000' align='center'>"; else echo "<tr bgcolor='#161616' align='center'>"; echo "<td>"."<center>".$i."</center>"."</td>"; echo "<td>"."<center>".$row['name']."</center>"."</td>"; echo "<td>"."<center>".$row['level']."</center>"."</td>"; echo "<td align='center'>"; if ($row['status'] == 2) { echo "Dead"; } else echo "Live"; echo "</td>"; echo "<td>"."<center>".date("D\, j M Y H\:i",$row['respawn_time'])."</center>"."</td>"; $i++; } ?> </table> </body> </html> Config.php <?php $db_user = "*****"; $db_pass = "*****"; $db_name = "*****"; $db_serv = "localhost"; $db_port = "3306"; $res = mysql_connect ( $db_serv, $db_user, $db_pass, $db_port ) or die ("Coudn't connect to [$db_serv]"); mysql_select_db ( $db_name ); ?> And yes im using L2JFree Gracia Final
×
×
  • Create New...