Jump to content

roko91

Members
  • Posts

    51
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by roko91

  1. Would be easier to make it work without javolution... I'm not saying it's hard to re-add javolution but certainly pointless IMHO
  2. I offered what I had and he was interested so I gave it. If what you say is true then basically what he ask doesn't exists and the goal of this thread can't be fulfilled. It's better something than nothing... I hope you see my point :)
  3. Ai.obj of the second pack was last modified 03.12.2003. That's before both Prelude Live AND C1 according to this topic. L2Server.exe was also last modified before Prelude Live. I don't know what it mean but it has to mean something and to be honest I don't care if it's stripped C1 which I doubt. I tested it with proper Geodata of course and it works wonderful. Nothing else matters for me :)
  4. You may be right but the files are older than C1 files which float around so my guess is they are legit.
  5. Thanks for the feedback! I was wondering do you have 336 client system? If yes I'm interested :)
  6. Sorry for the delay - I just saw you reply. Here are the files: Prelude Server Pack 1 Prelude Server Pack 2 Prelude Client System Please tell me if it's what you need :)
  7. That was the guide which gave me kick-start knowledge about quests and scripts in general :) I still worship it ^-^
  8. Nice idea but I though to move the Tombstone spawn behind the dead player like a real Tombstone above a grave. It's not because I'm lazy to code the thing you say but IMO it would be a little bit better this way :)
  9. Actually you can - /target Player :P
  10. If you talk about how the Tombstone will know who is the dead player I done it like this: you have custom zone in which when player die Tombstone will be spawned (which was Sweets idea). In this zone we override onDieInside() method in which we spawn our custom Npc Instance called L2TombstoneInstance for example. This Npc Instance have private property L2PcInstance _deadPlayer and method called setDeadPlayer(L2PcInstance deadPlayer). After we spawn the Tombstone we simply call it's setDeadPlayer() method and then we do whatever we want with _deadPlayer which will obviously hold the dead player instance :)
  11. You can roughly calculate how much memory you will need by multiplying player count by 2 like this: base server usage + (player count * 2) = memory consumed in MB. About bandwidth you can calculate it roughly with 50-100 kbps per player. I again say that this numbers are very rough and depend on many stuff like what your server/players do. In few words: don't worry about it :)
  12. No, I haven't but may play with it later. Meanwhile I would be glad to hear more of what you have in mind :)
  13. That was exactly what I had in mind :)
  14. Your approach is right - it's better to disable all unwanted actions for the dead player until Tombstone despawn.
  15. Oh now I get it... Well you got a point :) I think she mean that you don't suppose to steal from that far :D
  16. Or we can simply check if dead player instance has Tombstone spawned and handle the case :) We can handle that too by adding check if dead player instance is the same as stealer instance :)
  17. What SVN plugin are you using for Eclipse? I use Subclipse 1.10 on Eclipse Luna and it works flawlessly no matter http or https. If you plan to install it use clean Eclipse Luna with new workspace just to be sure :)
  18. I doubt that Debian without GUI will take more than 100MB so 4GB even DDR2 should be more than enough for beta tests (even for live if you don't exceed certain player count). Even L2OFF IL can be run with 4GB DDR2 on Windows 7 if you keep you system clean without bloatware. About your memory problem it looks like you use too much Xms/Xmx for 2GB RAM. Try to reduce it (I know it's l2j default settings but still you can try as you don't use geodata) and turn off any unnecessary bloatware before running the server.
  19. I have 2 prelude packs which both has files last modified 2002 and works on protocol revision 337. I don't know if they are downgraded from C1 but file modification dates makes me think they are legit (compared to modification dates of my C1 PTS). So if you are interested I can upload them :)
  20. What's the problem with "if (Rnd.get(100) < 101)"? It's like "if (true)" or no if at all (because Rnd.get(100) returns value between 0 and 99 which is always less than 101). It's just inefficient way to say "do it" that's all :) I tested with their base spawns but I don't believe that matters as the script just requires NPC with registered npcId. So I got no idea what's wrong :(
  21. On rev 339 chests can be opened right after server start without a problem (tested it by myself). I checked the logs and seems like chests are not changed since rev 305 so there should be no difference between rev 339 and rev 320 (latest free rev) on that matter. If you use customs they may cause the problem which is my only guess so far.
×
×
  • Create New...