-
Posts
61 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by freedy
-
yup, but I think he wants to delete the tabs completely, that you dont have a tab to click at. and its client side. so best option is to disable bypasses like ^wyatt shown ;)
-
if Im not wrong its easier to make no trade zone. Trade zone is everywhere else. You have to declare only no trade(store) zone where you dont want players to put their shops.
-
Gmshop Multsell Not Working! Hi5
freedy replied to Sarah.Walker's question in Request Server Development Help [L2J]
in new revs there are no IDs in Items <item id="XX"> change to <item> -
Help How To Reduce Evasion
freedy replied to exstacy's question in Request Server Development Help [L2J]
od add your own custom skill to classes you want and decrease evasion manually there ;) -
Help L2Open 1305 Rev Help
freedy replied to fani's question in Request Server Development Help [L2J]
you have something wrong in adminCommandHandler.java on line 37. Post your source here so we can help you -
this guy replies are killing me :troll:
-
Help How To Make Nobless Passive Skill
freedy replied to exstacy's question in Request Server Development Help [L2J]
you change this skill to passive or modify core (there is another topic very similar to this one just talking about not loosing any buffs after death, you will only make there another if (isNobles()){....}) <skill id="1323" levels="1" name="Noblesse Blessing"> <!-- Confirmed CT2.5 --> <set name="abnormalLvl" val="1" /> <set name="abnormalTime" val="3600" /> <set name="abnormalType" val="preserve_abnormal" /> <set name="aggroPoints" val="1" /> <set name="canBeDispeled" val="false" /> <set name="castRange" val="400" /> <set name="effectRange" val="900" /> <set name="hitTime" val="4000" /> <set name="isMagic" val="1" /> <!-- Magic Skill --> <set name="itemConsumeCount" val="5" /> <set name="itemConsumeId" val="3031" /> <set name="magicLvl" val="1" /> <set name="mpConsume" val="55" /> <set name="mpInitialConsume" val="14" /> <set name="operateType" val="A2" /> <set name="reuseDelay" val="2000" /> <set name="skillType" val="BUFF" /> <set name="targetType" val="ONE" /> <for> <effect name="NoblesseBless" abnormalTime="7200" val="0" abnormalLvl="1" abnormalType="preserve_abnormal" /> </for> -
that is the difference between these two?
-
that's not anyhow hard :) its just adding cycle into the main of L2CommunityServer.java while (true) { HtmCache.getInstance().reload(); Thread.sleep(20000); } example to get reload html every 20 secs. I think I could live with that :) or is there any better way to do it? I could Override that reload method via just adding time in secs into bracets but this one is easier
-
my problem is that I always need a new reebot of community server when I change anything in htmls. There is not simply working the //reload htm from ingame since it affects only game server files. There are more things I need from that reebot but mainly the html reload. :) any idea?
-
Another one, trying all day long to figure out if there is any option how to make community server auto reebot like every 5 mins or every hour. But everytime I start the shutdown it simply ends but dont start again. Anyone who got something like autoreebot on community server? (or ingame commands for restart)
-
well if its easy why do you ask? :)
-
Help Priest No Create New Clan
freedy replied to nery's question in Request Server Development Help [L2J]
told ya, didnt I? :) -
Help Priest No Create New Clan
freedy replied to nery's question in Request Server Development Help [L2J]
I believe that dude downloaded the drop panel ;) there is similar link "quest" in there you have to change it to something else otherwise all these chats wont work for you :) -
what rev is it? in last stable H5 I dont have that package ;) maybe its custom? //edit sry didnt see its l2jfrozen :)
-
ah ok :) it shouldnt be much hard to make that one, is it? :) it should be similar to forgotten scrolls but he just have to write those skills and classID restrictions :)
-
I didnt get it either... :okey:
-
I came to another problem. Is there a way to get L2DatabaseFactory working as Im in Gameserver? Because even I get all the info from gameserver on loading community server, it doesnt reload when I change data. My question is: Can I get data directly from GS database via Community server L2DBFactory? //edit: It works if you got all databases together but I dont like that you got it all in one DB. Is there any other option?
-
explain it a bit more. I dont get it. You will have augmented weapon and it will give you a skill based on class? or what?
-
yea I know what you mean :) I feel good when I try something and it actually works :) and thanks for your guides also ;)
-
never mind :) I found it, there is communityboardmanager which loads any board I need :) private CommunityBoardManager(final int sqlDPId) { _sqlDPId = sqlDPId; _boards = new FastMap<>(); _boards.put("_bbsloc", new RegionBoard(this)); _boards.put("_bbsfriend", new FriendBoard(this)); _boards.put("_bbsclan", new ClanBoard(this)); _boards.put("_bbscpost", new ClanPostBoard(this)); _boards.put("_bbsmail", new MailBoard(this)); _boards.put("_bbsmemo", new MemoBoard(this)); _boards.put("_bbshome", new TopBoard(this)); _boards.put("_bbserror", new ErrorBoard(this)); _forumRoot = new FastMap<>(); _players = new FastMap<>(); _clans = new FastMap<>(); _castles = new FastMap<>(); }
-
well whole mail system is working as it should, but I want to put mailbox into CB and also add there the Send New Message button, for that I need the exact same button at is in Mailbox (its bypass) to pop up new Message window :) //edit: Well I just found out that instaling community server itself is much better so I wont use this old one CB :) it lags the server also. But for now my question could be where to change bypass for _bbsfriend and so on? In old CB it was as above but where to put those managers now? if (command.startsWith("_bbsclan")) { ClanBBSManager.getInstance().parsecmd(command, activeChar); } else if (command.startsWith("_bbsmemo")) { TopicBBSManager.getInstance().parsecmd(command, activeChar); } but in community server are not BBS managers
-
ok thanks, and thanks a lot for the string part. Got some more questions anyway :) where do I find the bbs code for friend and mail tab in CB? Do I need it enabled in community server properties? and another problem I have is where do I find html for mail windows? :) I found something in community\data\staticfiles\html but no idea where from are those files taken by core.
-
So you are saying I should leave the Tabs as they are but recode everything under them like this? if (command.startsWith("_bbsclan")) { ClanBBSManager.getInstance().parsecmd(command, activeChar); } else if (command.startsWith("_bbsmemo")) { TopicBBSManager.getInstance().parsecmd(command, activeChar); } to this if (command.startsWith("_bbsclan")) { TopBBSManager.getInstance().parsecmd(command, activeChar); } else if (command.startsWith("_bbsmemo")) { TopBBSManager.getInstance().parsecmd(command, activeChar); } if I want to use the topbbsmanager?
-
I saw it on one server, completely customized. Well even if I try to change the bypasses, do you have idea where to find it? My problem is if I change bypass in ShowBoard.java from _bbsmail to _bbshome it still asks me for community server to run. and if anybody knows how to change the tab names your answer is more than welcome :) @Override protected final void writeImpl() { writeC(0x7B); writeC(0x01); // c4 1 to show community 00 to hide writeS("bypass _bbshome"); // top writeS("bypass _bbshome"); // favorite writeS("bypass _bbshome"); // region writeS("bypass _bbshome"); // clan writeS("bypass _bbshome"); // memo writeS("bypass _bbshome"); // mail writeS("bypass _bbsfriends"); // friends writeS("bypass bbs_add_fav"); // add fav. writeS(_htmlCode.toString()); }
