Jump to content

vampir

Legendary Member
  • Posts

    1,899
  • Credits

  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by vampir

  1. Sure, though development time is different too :P
  2. I have a suggestion of a way you can create admin commands. In special folder i have got xml files with commands like this: http://pastebin.com/BK8bburD Part of Java file: @Override public AdminCommandResponse onAdminCommandUse(Player activeChar, String command, Arguments arguments) { switch(command) { case "item_logs": CCPItemLogs.showPage(activeChar, arguments.getPlayer("Target"), 0); return AdminCommandResponse.SUCCESS; In connection with admin jar which can be reloaded, it saved my life 1000 times, honestly :)
  3. Average developer salary in Poland is 23,230 euro per year(according to payscale.com), I work on the sources 4-7 days a week, 6-10 hours a day since 2 years(with some breaks). You could get developers on forum for single jobs but good luck making a server of scale like L2Tales this way. Testing is also very important aspect, we have got files tested by players since years and we have broke through a lot of problems to make it stable like this. Also after checking out the income, I now realize that this price might be actually too low.
  4. Yes, but that was long time ago, next L2Tales is going to have a looot of features that those old files doesnt have.
  5. 15,000 euro. Send me a private message if you are interested. I am from L2Tales team, money would be shared between all coworkers. Nobody have stolen our files since a long time(they are shared on mxc i believe), that's the best you can get.
  6. Currently best protection you can get, far better than lameguard or anything else. Don't block Interface.u changes like LightFusions says, I will not be able to add my mods to the client then.
  7. Nice guide, thanks :)
  8. I do not know, most likely cannot be done by interface.u
  9. You need to create new window in interface.xdat, choose location on the screen and size 32x32 and script file same as file name. In the window you need to add the button with 32x32 size, as graphic set anything. Now you need to create new class that needs to be placed in interface.u later, it should have name same as window in interface.xdat. In script file you need to: - register event EV_ReceiveMagicSkillUse - override onevent function so you catch magic skill uses - get ButtonHandle of your interface.xdat button - set graphic of the button as icon of the skill(based on id from the event) - make wnd be visible You also should consider to make a timer which will hide wnd after skill was casted & register new event which notifies script if skill was cancelled
  10. Hey I have got a little bugged geodata above beleth, i would like bottom of the sea around Hellbound, Southern Fortress, Hive Fotress, Devil's Isle to have fine geodata(so while being in water, it should not be possible to be teleported below it). Game Client is H5. I will upload for you geodata "l2j" files that I currently use. Payment method: Skrill or Paypal. I might also figure out other method if you really do not accept any of those two. Payment amount: Give me your offer. Contact: Write post here or add my skype: niedziolek50 If you are reading this, it means that offer is still valid. Thanks!
  11. If you want to delete all of them, then go by XDat Editor to: - MinimapWnd > Minimap > MinimapCtrl tab - MinimapWnd_Expand > Minimap > MinimapCtrl tab and set ShowTown to false. Buttons to show detailed map of towns, fortresses will be gone. Also when character is in town and he opens map, he will see full size map(not map of the town he is in) If you want to delete just specific buttons(and also disable player to see detailed map when he is its region), you should modify ZoneName-e.dat
  12. "Achievement List" is simple button: <button value="Achievement List" action="bypass -h bypassValue" width=100 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"> You should replace fore and back values with IL button(or whatever you want). If you want button to do anything, you should also replace "bypassValue". "Action Name", "Status". "Action" are just 3 buttons in the table: <table cellspacing=0 cellpadding=0> <tr> <td> <button value="Achievement List" action="bypass -h bypassValue" width=100 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"> </td> <td> <button value="Status" action="bypass -h bypassValue" width=100 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"> </td> <td> <button value="Action" action="bypass -h bypassValue" width=100 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"> </td> </tr> </table> Rates are: - Background - image - table wth texts <table width=300 height=150 background="L2UI_CT1.FlightShipCtrlWnd_DF_SteerCtrl_Bg"> <tr><td width=300 height=10><br></tr> <tr> <td align=center> <img src="L2UI_CH3.map_Moon" width=32 height=32> </td> </tr> <tr> <td align=center> <br> <table width=300> <tr> <td width=150> <font color=666666>XP Rate : </font><font color=333333>x25</font> </td> <td width=150> <font color=666666>Drop Rate : </font><font color=333333>x15</font> </td> </tr> <tr> <td width=150> <font color=666666>SP Rate : </font><font color=333333>x25</font> </td> <td width=150> <font color=666666>Adena Rate : </font><font color=333333>x15</font> </td> </tr> </table> </td> </tr> </table>
  13. I think teleporting might be caused by Client. You can make sure by checking client<>server packets.
  14. In other parts of this tutorial(or however you call it) player gets items. I made each step to have different ID(like in quests) that is saved to database. Even if player reaches the level and relogs he will get the window again, but if he will answer to it(like teleport or get the item or take a buffs) he will never see it again.
  15. thats copy paste from my ranking page: http://pastebin.com/XCV6qzGz
  16. This seems to be very easy thing to fix, but you will need to dig in your pack source code. If you are into java, you should check ServerList login>client packet.
  17. Wouldnt moving to BitBucket be a good solution? I didnt have problem with DCMA, but maybe because my repository is private.
  18. It works fine in my case. Maybe you have got L2 running or you save to the different file?
  19. bardziej wyrafinowanych. Na razie się uczę robić zmiany w interface.u, za niedługo może zacznę sprzedawać jakieś fajniejsze kody. English: Szakalaka sent me what i needed. Thanks a lot for all replies & the .dll :)
  20. Jeśli to dużo roboty, to najwyżej ogarnę to debugowanie innym sposobem
  21. W skryptach wywoływane są funkcje: native final function Debug( string strMsg ); Nie wiem co w plikach dll ta funkcja robi, ale te informacje nie są nigdzie wyświetlane w grze ani na serwerze więc pewnie będą na ukrytej konsoli.
  22. H5. Modyfikuje sobie interface.u no i tam jest sporo użytych funkcji "debug"(pewnie idzie to do wspomnianego Logf). Łatwiej też będzie mi pisać te funkcje, niż robić jakąś nową która by wysyłała informacje do serwera czy też jakiegoś okienka w grze.
  23. Could you give or sell to me a program/dll or whatever you have, to hook into simple localhost l2.exe and catch those logs?
  24. Hey Have you got any idea how can i open L2 in Debug Mode? I want to see console with debug informations from interface. Thanks!
  25. You can easily create new UTX file with just 1 image(it is good solution, because it rarely stops on just 1), save it, then change name.utx > name.u, encrypt and place it in folder with l2.exe You can make UTX with UnrealEd Encrypt with l2encdec.exe, example command: l2encdec.exe -l LineageSkillEffect.u It is 3 minutes job, but you can buy the service from someone(like Asuki)
×
×
  • Create New...