Jump to content

Selim

Members
  • Posts

    54
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Selim

  1. I think 1GB for l2j is enought, assembla free will be good.
  2. My project is only for my own experience and learn :P But i work with my friend and i want svn. I think i go to free assembla and will be fine ?
  3. Hello, I want create svn repositories for 1 project. I need stable and good security platform. Free assembla plan with 1gb stoarage will be good? Or i need go to xp-dev Pro Small Plan? Maybe somethink else?
  4. Ok, but package will be better than installer from top site?
  5. Hi. I format my pc and i want download eclipse but i don't know what vesrion will be good only for l2j i don't see "eclipse classic" , mby "Eclipse IDE for Java Developers" ?
  6. omg i say you must play here? If you think my srv will be sux, ok it's your problem not my....
  7. You read my start post? "want start do somethink for my own experience" Mby my knowledge is low, but as i say i want learn this shit and when i have more knowledge mby i open srv, why not.. I never say i open srv today.
  8. 20ppl i mean on test srv, my friends. But on live srv if i try to open it i have more players ;p I think L2j like as you say is more "customizable", mean i can do what i need if i have have enough experience.
  9. Thx for fast reply, btw. best l2off pack in your opinion?>
  10. Hello. I'm not profesional developer, but i know little java,c++ and i want start do somethink for my own experience, and i have questions. 1. Better for me is start with aCis or any l2off pack? 2. To run test srv to max 20ppl with full geodata OVH VPS 2GB Ram is enough, or i must go to 4GB ? 3. To make svn Assembla free plaan (1Gb) is enough or i must go to Xp-dev.com pro small 2gb? 4. Where i can buy best machine with ddos protect to live srv? 5. Best Anti bot software?
  11. I think dwarf looks better with short wpn, i mean looks awesome :P
  12. Who know how to make it? I mean on l2jfrozen/acis dwarf have shields/weapons same size like others class, on some srv i see dwarfs class have short wpn/shield
  13. Close this topic and ban this scamer, i think frozen can be good too but must have good developer and spend much time, no only take all mods and implement it on pack..
  14. xDamian... lol admin or mods, check me this is my oficcial acc and only this, i only log on 1 other acc my vip friend. If i have skype Damian so i must have nick Damian on forum.. n/c. 1 time you say it's not mine srv, second it is mine srv.. .
  15. Untrusted, he post srv seel on acc "veteransofficial" and on skype he say me "it's not mine srv" and 2 days ago "2 days and my srv start check l2veterans..." today i log on srv 25 online, i check files etc. and say him i don't want buy this files, and he say to me "fuck you... etc etc.." and "i only want % from donate" ... xd nvm i make some screens :)
  16. Nice font :) can say name?
  17. Hi i want buy 2 files pack ready to go. First is for Pvp server w/o custom weapon armor, second Mid x20-30, who want more information pm me i send features what i want, can bee l2j os or l2off but must have all skills working, quest etc. without criticals bug, optimized for players to get fun without lags. Ofc. nothing is 100% without bugs and i know it.
  18. Y ok, so maybe you can give me right code for it?
  19. So tell me how will be good ?
  20. Ok i fix it, don't know if is good but all work fine ;p i add to traderequest.java this code: if (partner.getTradeRefusal()) { player.sendMessage("Target is in trade refusal mode."); player.sendPacket(ActionFailed.STATIC_PACKET); return; } When i use .tradeoff/tradeon all fine, but when i use admin comand tradeoff in admin panel it work fine but i have error in console like on screen, someone know what is wrong?
  21. How to add it? I put adminadmin.java this code: case admin_tradeoff: try { String mode = command.substring(15); if(mode.equalsIgnoreCase("on")) { activeChar.setTradeRefusal(true); activeChar.sendMessage("Trade refusal enabled."); } else if(mode.equalsIgnoreCase("off")) { activeChar.setTradeRefusal(false); activeChar.sendMessage("Trade refusal disabled."); } } catch(Exception ex) { if(activeChar.getTradeRefusal()) { activeChar.setTradeRefusal(false); activeChar.sendMessage("Trade refusal disabled."); } else { activeChar.setTradeRefusal(true); activeChar.sendMessage("Trade refusal enabled."); } } and to pcinstance.java this: //Line 1202 private boolean _tradeRefusal = false; //Line 14245 public void setTradeRefusal(boolean mode) { _tradeRefusal = mode; } public boolean getTradeRefusal() { return _tradeRefusal; } Compile succes, admin comand in panel when i use it i see sysmsg "trade refusal enabled/disabled" but i still can give trade to gm, i think i must add somethink else to activate it to work but i dont know what and where :/
  22. I think i must add "admin_tradeoff" so i put adminadmin.java this code: case admin_tradeoff: try { String mode = command.substring(15); if(mode.equalsIgnoreCase("on")) { activeChar.setTradeRefusal(true); activeChar.sendMessage("Trade refusal enabled."); } else if(mode.equalsIgnoreCase("off")) { activeChar.setTradeRefusal(false); activeChar.sendMessage("Trade refusal disabled."); } } catch(Exception ex) { if(activeChar.getTradeRefusal()) { activeChar.setTradeRefusal(false); activeChar.sendMessage("Trade refusal disabled."); } else { activeChar.setTradeRefusal(true); activeChar.sendMessage("Trade refusal enabled."); } } and to pcinstance.java this: //Line 1202 private boolean _tradeRefusal = false; //Line 14245 public void setTradeRefusal(boolean mode) { _tradeRefusal = mode; } public boolean getTradeRefusal() { return _tradeRefusal; } Copile succes, admin comand in panel and custom tradeoff/tradeon whe i use it i see sysmsg "trade refusal enabled/disabled" but i still can give trade to player, i think i must add somethink else to activate it to work but i dont know what and where :/
×
×
  • Create New...