Jump to content

StealthyS4m

Members
  • Posts

    127
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by StealthyS4m

  1. It stays and I think I found why it doesn't make person a hero after restart:because in L2PcInstance when loading character info it doesn't load anything related to hero. //sethero makes you a hero only till restart and it uses targeted player instance.
  2. Hello guys, I have a script that checks who has most pvp in one day,it checks it by checking database and at the end of the day I want to set a player,who has most pvps, to hero.I don't know how to get character instance,so I can't do player.setHero(true).I can change database table "heroes",but I am not sure what columns like played,active,message mean. I can get any info from database,but I am not sure how to set the player with most pvp to Hero(changing hero to 1 in characters table doesn't work). So I either need a way to make a player a hero using database or better thing would be to get Character instance so I can use Player.setHero(true);
  3. For example,I have a code that check who has most online,and the player who has the most is set to hero. And I get it like that: PreparedStatement statement = con.prepareStatement("SELECT char_name FROM characters ORDER BY online DESC LIMIT 1");
  4. Yeah,I got it to work. Thank you again! And if you could I got one more question,I can't find how to get character instance by using his objId or char name. For example,I want to make player a hero and I can get his char name or objId,so how can I get variable character,so I can character.setHero(true);
  5. Ohh,so it works like this: You write the command ("/unstuck") Client converts it to id (52) Clients sends it to the server Server recognizes ID and does what he needs to do ?
  6. Hello guys,I am sorry to bother you again. I am trying to create new user command.Code seems pretty simple to me,just have one trouble.Where do I find what command what id has? I mean,where do you say "/unstuck" = 52 or something like that,cause I failed to find it. Thank you for help.
  7. Ok,Thank you guys,I guess time will tell.You can lock.
  8. Hello guys, I just need to check one thing so everything works fine.(I am using l2acis rev320).I wanted to make scrolls,ls,enchants stackable in my server,but as I am going to edit code,I noticed that everything should work correctly,because it destroys items by quantity,not like in frozen the whole item,no matter the quantity,so I just added this line in xml files: <set name="is_stackable" val="true" /> and edited client files.It seems to work perfectly,but just to be sure,I want to ask you guys if there won't be any troubles with this? Thank You for you help!
  9. If you want fast quick just remove this line: _log.info("Class not found: " + template.getType() + "Instance"); ,but it won't show you when it throws error.
  10. If it's flying,but nick height is correct,I believe you could try to decrease location Z of npc in spawnlist table.
  11. I am not sure,but I think it should have something like that at the end of the method: SpawnTable.getInstance().addNewSpawn(_mobSpawn, false); _mobSpawn.init();
  12. Hello, I don't know much about spawning yet,so I can't help you there,but if I am correct,if it throws error,you can't see it,because you have System.out.println,you should use _log.log(Level.WARNING,"Error in event"); but first create: protected static Logger _log = Logger.getLogger(YourClassName.class.getName()); EDIT:Tessa,I believe he is trying to spawn mob near player position.
  13. Just as I thought ^_^ Well,Thank you for help guys!
  14. The main reason is,I create my own boss engine and am using Grand boss templates and same zones,so it doesn't let you in zaken zone or others. Scripts are disabled.I just actually want to get rid of zones.If I remove zones from xml file it throws error.It throws it for this line:ZoneManager.getInstance().getAllZones(L2OlympiadStadiumZone.class); I guess it can easily be done by changing removePlayersFromBossZone method(or similliar name,can't check now) in L2PcInstance. I am just interested if there is easy way to disable grand bosses.
  15. Hello guys, I need to remove everything related to grand bosses,is there an easy way to remove them from source?I don't need to delete GrandBoss classes I just need that server doesn't load them.I tried removing GrandBossManager.init(); from GameServer.java,but it doesn't help. If there isn't an easy way to remove Grand Bosses,can I easily remove Boss Zones?If I remove zones from BossZones.xml file,I get error,for some reason it comes from OlympiadManager,to be more precise,from this line: final Collection<L2OlympiadStadiumZone> zones = ZoneManager.getInstance().getAllZones(L2OlympiadStadiumZone.class); Shouldn't it get olympiad arenas? In conclusion,how can I easily remove all grand boss zones? Thank you!
  16. You are pretty much saying "My car doesn't work,how to fix it?" At least post your errors if you want some help.
  17. Yeah,but how,modification date is newer of rev 330 than my edited files. There is indication sign on files that are edited in Eclipse,so I guess there is a way,I just can't find it ^_^
  18. Hello, As new aCis revision came out I want to update it(mine is 320rev).I am using eclipse and I want to update in the way so it doesn't remove my edits in source code.So is there any easy way to do such thing or do I have to create new project in eclipse and copy manually every file I edited? Thank you for help. P.S.I searched for such question,but didn't find any.
  19. Oh my god,I am so dumb... My answer was just a bit above my code... Thank you for help again SweeTs
  20. Hello guys, I am using l2jacis instance buffer and I want to add buff sets(Mage buffs,Fighter buffs) this is the line I am trying to work with <a action=\"bypass -h npc_%objectId%_getbuff 1204 2\">Mage Buffs</a> , but I am not sure how to make multiple actions. I tried seperating buffs by colonn,semicolon,but it didn't work out.I know that you can get action value and do something in Java,for example: <a action=\"1\">Wind Walk</a> if(action == 1){ doSomething(); }, but I am not sure how to get this action value. This is the link to my instance buffer: http://www.maxcheaters.com/topic/115825-simple-instanced-buffer/ Thanks for help guys.
  21. Thanks for help guys,I will survive till new rev. Thank you Tryskell for creating such amazing project.
  22. Yeah,I had them deactivated for some time,but I thought of it,so I activated them back.It throws some erros when loading scripts in GS console,but as much as I saw all of them were about boats. EDIT: I am sorry,it actually throws error on L2AttackableAI and the error is on this line: _log.info("Class not found: " + template.getType() + "Instance"); It says that CharSequence cannot be resolved.I removed this line and it seems to fix it,but I would like to know when this script throws error,so catch line prints out something.It seems that this line throws error for every other script,so it would be really nice to fix it.Thanks for help!
  23. Hello, I've got l2j acis 320rev(I think).At first I thought I fucked up source code so it doesn't give any experience,then I replaced my server files with totally new ones and it gave no result.Then I replaced database and still no result.So there I am with totally original files and mobs don't give me any experience.Do you guys know what the problem could be? I didn't use mmo_core files as I don't know what they do.So maybe you could answer this one for me? ^_^ Could it have to do something with java version?Because I am using jre7 and it says something about not showing annotations,because it requires 1.6.Yes,I know annotations won't be the reason behind no exp gain,but could it be because of version difference? Thanks!
  24. Server has big news!WIPE and record online! Check out the news!Click here!
  25. Less than 2hours left! We are waiting for you!
×
×
  • Create New...