Jump to content

josecarlosfl18

Members
  • Posts

    103
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by josecarlosfl18

  1. Missing for a long time... Here you go! http://www.mediafire.com/?p5mp10fdp1w6svf
  2. 1- Using Freya client? 2- Console give any error? 2- Looks into the logs files... 3- Ping 0 or 9999??? 4- Right permission in the database for read?, write?, update? etc... Login and Game can use different user for connecting. Check permissions!!!... Any problem ask...
  3. Some specific info it's require in order to answer your question properly... First. one the server that you cannot enter, only login and nothing more, looks like a client problem, trying to enter on a freya server with a Gracia Final client? And the second, cannot log in??? Be more specific... You know how many error can be given??? A LOT!!!!
  4. You should use search button first bro... Read that post: http://maxcheaters.com/forum/index.php?topic=81843.0 Everything it's here... If it's a particular problem ask, not a entire guide when they are a lot of them...... The only thing aditional it's that Freya and latest H5 need JDK7 on L2jServer core...
  5. Hi again to all ^_^ Here me asking for some help jejeje A got a NPC that support to handle the Symbols (dyes)... Original one it's for L2jServer platform, but when y try to adapt it to L2jFree core i got some errors that cannot understand... One of them are: WARNING [07 Jan 22:33:12,864] com.l2jfree.gameserver.model.quest.Quest.showError(): /home/l2jfree/Gameserver/data/scripts/custom/955_NpcService/__init__.py Traceback (innermost last): File "__init__.py", line 688, in onAdvEvent File "__init__.py", line 430, in optionsymbol [b]TypeError: getAvailableHenna(): 1st arg can't be coerced to com.l2jfree.gameserver.model.actor.instance.L2PcInstance[/b] at org.python.core.Py.TypeError(Unknown Source) at org.python.core.PyReflectedFunction.throwError(Unknown Source) at org.python.core.PyReflectedFunction.throwBadArgError(Unknown Source) at org.python.core.PyReflectedFunction.throwError(Unknown Source) at org.python.core.PyReflectedFunction.__call__(Unknown Source) at org.python.core.PyMethod.__call__(Unknown Source) at org.python.core.PyObject.__call__(Unknown Source) at org.python.core.PyInstance.invoke(Unknown Source) at org.python.pycode._pyx443.optionsymbol$12(__init__.py:430) at org.python.pycode._pyx443.call_function(__init__.py) at org.python.core.PyTableCode.call(Unknown Source) at org.python.core.PyTableCode.call(Unknown Source) at org.python.core.PyFunction.__call__(Unknown Source) at org.python.pycode._pyx443.onAdvEvent$21(__init__.py:688) at org.python.pycode._pyx443.call_function(__init__.py) at org.python.core.PyTableCode.call(Unknown Source) at org.python.core.PyTableCode.call(Unknown Source) at org.python.core.PyTableCode.call(Unknown Source) at org.python.core.PyFunction.__call__(Unknown Source) at org.python.core.PyMethod.__call__(Unknown Source) at org.python.core.PyObject.__call__(Unknown Source) at org.python.core.PyObject._jcallexc(Unknown Source) at org.python.core.PyObject._jcall(Unknown Source) at org.python.proxies.main$Quest$442.onAdvEvent(Unknown Source) at com.l2jfree.gameserver.model.quest.Quest.notifyEvent(Quest.java:425) at com.l2jfree.gameserver.model.actor.instance.L2PcInstance.processQuestEvent(L2PcInstance.java:1579) at com.l2jfree.gameserver.network.clientpackets.RequestBypassToServer.runImpl(RequestBypassToServer.java:171) at com.l2jfree.mmocore.network.ReceivablePacket.run(ReceivablePacket.java:64) at com.l2jfree.util.concurrent.ExecuteWrapper.execute(ExecuteWrapper.java:59) at com.l2jfree.gameserver.threadmanager.FIFORunnableQueue.removeAndExecuteFirst(FIFORunnableQueue.java:28) at com.l2jfree.gameserver.threadmanager.FIFOExecutableQueue.run(FIFOExecutableQueue.java:73) at com.l2jfree.util.concurrent.ExecuteWrapper.execute(ExecuteWrapper.java:59) at com.l2jfree.util.concurrent.ExecuteWrapper.run(ExecuteWrapper.java:40) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) at java.lang.Thread.run(Thread.java:722) On the script into thats lines a got the code: def optionsymbol(st, cases,num): if cases == "draws": [b]henna = HennaTreeTable.getInstance().getAvailableHenna(st.player.getClassId())[/b] hel = HennaEquipList(st.player, henna) st.player.sendPacket(hel) elif cases == "deletes": MAIN_HTML = "<html><title>Services Manager</title><body><center>" MAIN_HTML += "<img src=\"L2UI_CH3.herotower_deco\" width=256 height=32><br><br>" MAIN_HTML += "<font color=\"FF0000\">.::Select symbol you would like to remove::.</font><br><br><br1>" hasHennas = False i=0 if num != "0": st.player.removeHenna(int(num)) while i <= 2 : i+=1 henna = st.player.getHenna(i) if henna != None: hasHennas = True MAIN_HTML += "<button value=\""+henna.getName()+"\" action=\"bypass -h Quest " +QUEST_INFO+ " symbol deletes "+str(i)+" 0\" width=120 height=20 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"><br>" if hasHennas == False: MAIN_HTML = "<html><title>Services Manager</title><body><center>" MAIN_HTML += "<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><font color=\"FF0000\">You don't have any symbol to remove!</font><br>" MAIN_HTML += "</center></body></html>" return MAIN_HTML And on the com.l2jfree.gameserver.datatables.HennaTreeTable.java on thats lines i got: public L2Henna[] getAvailableHenna(L2PcInstance player) { return _hennaTrees.get(player.getClassId().getId()); } And on the L2jServer platform in the same file i got: public L2HennaInstance[] getAvailableHenna(ClassId classId) { List<L2HennaInstance> result = new FastList<L2HennaInstance>(); List<L2HennaInstance> henna = _hennaTrees.get(classId); if (henna == null) { // the hennatree for this class is undefined, so we give an empty list _log.warning("Hennatree for class " + classId + " is not defined !"); return new L2HennaInstance[0]; } for (L2HennaInstance temp : henna) { result.add(temp); } return result.toArray(new L2HennaInstance[result.size()]); } As the creators know, there's should be a way to adapt this to L2jFree core???. Or someone else? By the way, lines in bold are the conflict codes... Some basic description, NPC should add or remove Dyes depend of the class and available dyes from inventory. But due i don't know to much about the L2j core at all (in general not L2jServer, not L2jFree, L2j in general), I'm still studying... I know that every core has it's own way of work... Waiting for a help? please ^_^! My server it's on Linux, so didn't be much trouble with that didn't?
  6. i didn't see this event before.. plz reupload the script dude... tnks in advance
  7. I must answer... Chronicle? Version? Tested? Credits? Way to customize the event (config.properties)? Thanks any way, looks a nice event. A like the intro, downloading and testing... Edit: Look for Gracia Final chronicle due to import's....
  8. 1- Are you touched the original file from the server? 2- Are you selected the right enchant type on the weapon? those values indicate thar everything are normal... <table name="#ench1Power"> 41 42 44 45 46 48 49 50 52 53 54 56 57 58 60 61 62 64 65 66 68 69 70 72 73 74 76 77 78 80 </table> <table name="#ench2mpConsume"> 54 53 52 50 50 49 48 46 46 46 45 44 42 42 41 40 38 38 37 37 36 34 34 33 32 30 30 29 28 28 </table> <table name="#ench2mpInitialConsume"> 13 13 13 13 12 12 12 12 12 11 11 11 11 10 10 10 10 9 9 9 9 9 8 8 8 8 7 7 7 7 </table>
  9. You can try this... <?PHP $username="database_user"; $password="database_passwd"; $database="database_name"; $conexion=mysql_connect('server_address',$username,$password) or die("¿¡¡Cannot Connect to Database!!!"); $db=mysql_select_db($database) or die("I Dont Get to The Database"); $itemIdToCompare = 4037; $result = mysql_query("SELECT item_colum, character_id_colum FROM item_table_character WHERE item_colum='".$itemIdToCompare."", $conexion); $num_rows = mysql_num_rows($result); if ($num_rows > 0){ echo("I Got the ".$itemIdToCompare." Item, can discount or wherever"); } else { ... (code to folow in case of dont have the item) } mysql_close(); ?> That should work... Credits By Me...
  10. Or ... Go and edit "C:\WINDOWS\system32\drivers\etc\hosts" file and add this to last 127.0.0.1 L2authd.lineage2.com where "127.0.0.1" are your ip... Or leave it in that way for a Server/PC testing...
  11. 1- Are you running Server Files and Client Files into same machine? 2- Witch Java version have intalled? 3- Your Client have a fully System Patched? 4- Look your Gameserver Log looking for some aditional info/data...
  12. Find some NPC called Grand Bosses Status into here: http://maxcheaters.com/forum/index.php?board=37.0 or... here: http://maxcheaters.com/forum/index.php?board=62.0 for your chronicle... Also you can find a script called L2 Grandboss Live Map with are a L2Map with a colored dot over hin showing GrandBoss status (red dead, green live)... That script need some easy custom editting/setting in order to read your Database Info and post real status and position... Need to be run into a apache/ISS service due to a php language.
  13. Nop.. For him Its Now Oviously!!!... It's does matter... MySQL Core are the same, just a bug fixes and some other changes... Visit MySQL.com for a full changelog between version. May a recomend 5.5... Lastest, more compatible, and more bug fixes than 5.1... Thats the answer he need to know not a simple spamming ... >:(
  14. Those number means the king of network you want to have, and the number of pc that can will access to the server according to this... For better undertanding of that, you need to have knowlege about networking planning and developer... Or use a online network calculator... Simply... Enjoy...
  15. 1) Open java\com\gameserver\network\clientpackets\enterworld.java 2) Open Enterworld.Java Find This activeChar.sendMessage(getText("VGhpcyBzZXJ2ZXIgdXNlcyBMMkosIGEgcHJvamVjdCBmb3VuZGVkIGJ5IEwyQ2hlZg==\n")); activeChar.sendMessage(getText("YW5kIGRldmVsb3BlZCBieSB0aGUgTDJKIERldiBUZWFtIGF0IGwyanNlcnZlci5jb20=\n")); if (Config.DISPLAY_SERVER_VERSION) { if (Config.SERVER_VERSION != null) activeChar.sendMessage(getText("TDJKIFNlcnZlciBWZXJzaW9uOg==")+" "+Config.SERVER_VERSION); if (Config.DATAPACK_VERSION != null) activeChar.sendMessage(getText("TDJKIERhdGFwYWNrIFZlcnNpb246")+" "+Config.DATAPACK_VERSION); Delete This activeChar.sendMessage(getText("VGhpcyBzZXJ2ZXIgdXNlcyBMMkosIGEgcHJvamVjdCBmb3VuZGVkIGJ5IEwyQ2hlZg==\n")); activeChar.sendMessage(getText("YW5kIGRldmVsb3BlZCBieSB0aGUgTDJKIERldiBUZWFtIGF0IGwyanNlcnZlci5jb20=\n")); And Past This activeChar.sendMessage("Your Text"); activeChar.sendMessage("Your Text "); This Delete if (Config.SERVER_VERSION != null) activeChar.sendMessage(getText("TDJKIFNlcnZlciBWZXJzaW9uOg==")+" "+Config.SERVER_VERSION); if (Config.DATAPACK_VERSION != null) activeChar.sendMessage(getText("TDJKIERhdGFwYWNrIFZlcnNpb246")+" "+Config.DATAPACK_VERSION); Past It if (Config.SERVER_VERSION != null) activeChar.sendMessage("Your Text); if (Config.DATAPACK_VERSION != null) activeChar.sendMessage("Your Texti "); 6) Save And Compile Test 100% Credits To L2JTeam
  16. There a good guide for argumenting weapons in max cheaters, just use search button... Also attribute cannot be given, only skills, active or passive, in your case warrior typo for asking str right? Active : Might Level 10 | ( augAttributes: 1062079106 ) ( augSkillId: 3132 ) ( augSkillLevel: 10 ) (Just give you the buff skill) Passive : Might Level 10 | ( augAttributes: 1067125363 ) ( augSkillId: 3240 ) ( augSkillLevel: 10 ) (Give you a passive plus buff might) Good Luck and search...
  17. Install "Slik Subversion" software into your windows and error goes off... Last version a think its "Slik Subversion 1.7.2", if your windows is 32bits use Win32 installation, if is 64bits use Win64 instead... Also available in Linux platform...
  18. In case that your gameserver and loginserver are in 2 diferent machines, use IP from the gameserver machine or domain intead... Otherwhise use our same ip from your server...
  19. Use a shortest folder name too... That should fly away future problem with name too long into your project folder... Windows have some problem when names become larger than 255 characters...
  20. Custom tables exist for use it... For customs stuff... Thats keep your others tables clean for future migration, better data handing and others things... Just adapt the .SQL file to your "custom table weapon" into your database... Replace "custom_weapon" into the file or create a "custom_weapon" table into your DB... Simply... Good Luck, any problen just ask...
  21. If you think to mount a decent server, H5 still are into many betas, none of them are elegible for serious server online... Use Freya instead, when H5 become more stable and complete, use it, and them GoD... How? Read guides, download codes, uses your brain and start... Everythind are... Here: http://maxcheaters.com/forum/index.php?board=37.0 and Here: http://maxcheaters.com/forum/index.php?board=62.0 Whant customs stuff? Here: http://maxcheaters.com/forum/index.php?board=61.0 Some Help? Use Server side this: http://maxcheaters.com/forum/index.php?board=64.0 and for client side this: http://maxcheaters.com/forum/index.php?board=68.0 Good Luck...
  22. A custom mod for hi/populed servers... But curious way to gift for those who like enchant, enchant, enchant, enchant, enchant...
  23. Thanks for the share... But onlu handy for those who like to use the shift+click feature in theirs production server,... a questios, did the properties have already something like shift+click drop list?
  24. Question... Those Geodata & Pathnodes work on any project on any chronicle? Work on Interlude same on GF or Freya? Or are for a spesific chronicle or a spesific project of L2? L2OFF? Tnks in advande... Keep sharing...
  25. Wonderfull... And Ones Of the few post about NPC for H%... Thnks. The GMShop loook petty good... That's the kinnda of share that keep this forum alive!!!!
×
×
  • Create New...