-
Posts
1,068 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Posts posted by vl4d
-
-
how to do installation? ;)
-
nai?? dld me ena i7 kai 1 gb ram + 1 upload 8a exw pro server e?? (toulaxiston min ana8erese se olous den imaste olu toso noobs eleos dld)...pedes min zorizeste to pio simantiko einai (epeksergastis) poso grigoros einai.....
-
kl kai to upload pou les 1 den exeis oute na to varas to modem olu mera ;) ade 400 me 600 kbps* to polii :PTo upload to dinei olo, to download einai 20mbps, asxeto :P !
-
egw prosopika prin merika xronia anoi3a enan interlude kai me 2gb kai 10 mbps sta 70 online htan ok ade sta 80 arxizane na lene lagg kai lag xd twra ti na sou po se freya/h5 logika sta 40-50 8a eisia ok (aposa 3erw perimene kai kapion pou exei megaliteri mpiria)
meta les oti exeis 24mbps oli afto exoume to 8ema posa ftaneis?? :P
twra ama exeis 4gb ram kai sikoneis mono ton server sto pc kai mpenis apo kapou alou sto l2 ok 8a eisia ala ama noi3is kai to client pai asto 20 to polu...
-
bump.....
-
iparxei kanena official npc/drop pou na exi AA ??
i na petai kapio alo item kai na to trade oste na paro AA 3erei kaneis??
edit: ta red/green/blue seal stone exei pou8ena kanena trader gia aa *official npc) ??
-
re to template pou exw einai rip kai prospa9o na to kano php apo html twra ama mporeis na me help ok ;)Θες μήπως να δείξεις το scriptάκι που έχεις; Γιατί μου φαίνεται γνωστό.. ;-/
twra pio scriptaki les gt den 3erw kala ao php :P
-
to sigmo/frozen/l2j den exi zonemanager to acis den exi id sta zone kai o code einai gia interlude pio kato o matim lei aplos i foto einai apo gracia.. xdδεν είναι για interlude. Ψάξε στο sigmo αν το έχει ή πες του να το κάνει adapt
-
einai interlude project alla ta java einai copy apo freyaτο acis ειναι μονο Interlude?
γιατι κατι με μπερδεύει στο φορουμ τους
-
axaxaxaxaxxaxaax ;)
-
δεν βιαζομαι
αρα να παω στο acid?
acis* nai einai to kalitero free project (interlude) mporo na po kai kalitero apo polla private project...
re flore des ligaki ta reply apo kato kid ec to paizhs e3ipnos oxi egw kai den se rotisa ti lene sto forum egw 8elw na mou vgalis video oti afto pou les.. "enchant script"http://acis.i-live.eu/index.php?topic=157.0 try some scripts
k kopse ayto t ilithio ifaki kathe fora p leei kapios kati petagese me 1 xaxaa k t paizeis eksipnos..
-
ti den exei?? polla protection? axaxaxxaaxax (vgale video me to lastrev pos kaneis bug me phx)simfono alla sto acis epd kanei refactor dn exei polla protection p.x t enchant script apo phx douleuei , mporei episis t uknownpackets script n t laggarei giayto kane ipomoni einai teleio pack alla dn ine etoimo akoma, an viazese pare lolfrozen
-
re exw ena java script apo ton matim kai to exw testari se 5 dia9oretika project kai mou vgazi error kai 8elw na to test kai se archid ;) http://maxcheaters.com/forum/index.php?topic=218969.0τι εννοείς έχεις βρει πολλά; και γιατί να ξεκινήσεις με archid? βλακεία είναι
-
pio einai to last rev gt exw vri polla kai den 8imame pio einai
-
exis kaneis na mou dosi to last rev ths archid (interlude) ???
-
??????????
-
mhpws exei kaneis to e3hs votereward ph otan kano egw vote 8a pernw mono egw oxi oi upolipi to exw dei mono ston dubai kai epsa3a kai den exw vri tpt ama mporei kapios na me help ok ;)
-
/* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package custom.BossRespawn; import javolution.text.TextBuilder; import com.l2jserver.gameserver.instancemanager.GrandBossManager; import com.l2jserver.gameserver.model.actor.L2Npc; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.quest.Quest; import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jserver.gameserver.datatables.NpcTable; public class BossRespawn extends Quest { private static final int NPC_ID = 960; private static final int[] BOSSES = {29001, 29006, 29014, 29019, 29020, 29022, 29028, 29045}; public BossRespawn(int questid, String name, String descr) { super(questid, name, descr); addFirstTalkId(NPC_ID); } public String onFirstTalk(L2Npc npc, L2PcInstance pc) { if(npc == null || pc == null) return null; if(npc.getNpcId() == NPC_ID) { sendInfo(pc); } return null; } private void sendInfo(L2PcInstance activeChar) { TextBuilder tb = new TextBuilder(); tb.append("<html><title>Grand Boss Info</title><body><br><center>"); tb.append("<img src=\"L2UI_CH3.herotower_deco\" width=256 height=32><br><br>"); for(int boss : BOSSES) { String name = NpcTable.getInstance().getTemplate(boss).getName(); long delay = GrandBossManager.getInstance().getStatsSet(boss).getLong("respawn_time"); if (delay <= System.currentTimeMillis()) { tb.append("<font color=\"00C3FF\">" + name + "</color>: " + "<font color=\"9CC300\">Is Alive</color>"+"<br1>"); } else { int hours = (int) ((delay - System.currentTimeMillis()) / 1000 / 60 / 60); int mins = (int) (((delay - (hours * 60 * 60 * 1000)) - System.currentTimeMillis()) / 1000 / 60); int seconts = (int) (((delay - ((hours * 60 * 60 * 1000) + (mins * 60 * 1000))) - System.currentTimeMillis()) / 1000); tb.append("<font color=\"00C3FF\">" + name + "</color>" + "<font color=\"FFFFFF\">" +" " + "Respawn in : </color>" + " " + " <font color=\"32C332\"> " + hours + " : " + mins + " : " + seconts + "</color><br1>"); } } tb.append("<br><img src=\"L2UI_CH3.herotower_deco\" width=256 height=32><br>"); tb.append("</center></body></html>"); NpcHtmlMessage msg = new NpcHtmlMessage(NPC_ID); msg.setHtml(tb.toString()); activeChar.sendPacket(msg); } public static void main(String[] args) { new BossRespawn(-1, "BossRespawn", "custom"); } }
-
logika exeis ena music file pou mpainei sto client ama den to exoun oi alloi pws na to akousoun??
-
pali aρχιsε ο flwρος μας εχει πρh3ει me to kolo pack na poume...
ti den katalabaineis ?? den yparxei...
-
ena pragma den exw katalavi ti access 75/100 afta einai sta prota l2j pack lol twra einai 1/2/3/4/5/6 kai merika pack 127
-
INSERT INTO `armor` VALUES (9603, 'Epic Energy Knight Heavy Helm', 'head', 'true', 'none', 570, 'cloth', 's', 0, 90, 93, 0, 0, 0, 0,'true','true','true','true','0','0');
to 90 kanto oso time 8es (sta perisotera exi -1 ec to alazis oso 8es :) )
-
ti aloga les re lol??Πως δύο διαφορετικά άλογα να τρέχουν το ίδιο??
Βάλε ρε φίλε το ίδιο System που έχεις στο ένα PC στο άλλο.
-
e pos 8es na sou exi to ido xrwma ama den exis to idio system...
Ancient adena???
in Request Server Development Help [Greek]
Posted