-
Posts
482 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by thepsolartek
-
[Request]Npc Help
thepsolartek replied to LegendaryBeast's question in Request Server Development Help [Greek]
iracundus otan to kaneis pes mas einai kati arketa xrhsimo -
TO BRIKA LOCK IT
-
8es na mpeis pc m na katalabeis kalitera ti ennow gt dn mporw na to eksigisw akribws :P PX STO ARMOR TABLE TELIWNEI ME TO ID 9191 TEDDY BEAR HAIR ENNW EXW PERASEI CUSTOM STHN ARMOR ME CODE 9752 PATAW ANAZHTHSH ALLA DN TO DEIXNEI ENNW STON SERVER TA BLEPW KANONIKA
-
Hi members na rothsw kati iparxei tropos na brw ena npc p perasa sto navicat xwris to contol f ?
-
[Hellp]Ligw Hellp
thepsolartek replied to OldTrue14's question in Request Server Development Help [Greek]
bsk file m bale ta imports tou brazil gia ayto dn s douleuei logika kai bale to npc sta scripts.cfg tou server s mallon ayta dn ekanes -
oxi kai toso problem alla ok
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
nai file m -
oxi kai toso problem alla ok
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
to brika to name htan lith patrolman -
oxi kai toso problem alla ok
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
to kako einai oti kai to area einai megalo opws eipe kai ta mobs polla 8a prospa8isw na to brw apo google -
oxi kai toso problem alla ok
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
y kai emena ekei m pige to mialo alla to kako einai oti ayta ta areas einai terastia -
oxi kai toso problem alla ok
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
y mhpws kserete name ayto rotaw :P -
oxi kai toso problem alla ok
thepsolartek posted a question in Request Server Development Help [Greek]
paides psaxnw na brw ena mon to pio dn kserw pws to lene. to mono p mporw na sas pw einai oti einai mple me kafe kai oti otan to kill bgazei kati san asprous kapnous. apo oso kserrw htan gatekepper se enan ispaniko server me name l2ultima batalla. Deite edw ena video apo to 1 sec fenetai einai ekino p leei vueling: -
error se npc top pvp/pk gia interlude
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
oreos thanks file m na sai kala :P -
error se npc top pvp/pk gia interlude
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
EPISHS M BGAZEI ENA ERROR STO GAME SERVER CONSOLE P LEEI: file "_init_.py" line 84 in onevent NameError:L2DatabaseFactory kai to idio ligo parakatw file "_init_.py" line 48 in onevent NameError:L2DatabaseFactory -
error se npc top pvp/pk gia interlude
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
y einai einai l2 j .fozen w8 na ta balw na ta deite import sys from com.l2jfrozen.gameserver.model.actor.instance import L2PcInstance from java.util import Iterator from com.l2jfrozen.gameserver.datatables import SkillTable from com.l2jfrozen.gameserver.model.quest import State from com.l2jfrozen.gameserver.model.quest import QuestState from com.l2jfrozen.gameserver.model.quest.jython import QuestJython as JQuest print "importing custom: ResidentEvil NPC" NPC=[40000] Precio_ID = 57 QuestId = 40000 QuestName = "list" QuestDesc = "custom" InitialHtml = "1.htm" # ************************ # Creando la Clase Quest * # ************************ class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onTalk (self,npc,player): return InitialHtml def onEvent(self,event,st): htmltext = event cantidad_pago = st.getQuestItemsCount(Precio_ID) #PK Info if event == "1" and cantidad_pago >= 0 : st.takeItems(Precio_ID,0) total_asesinados = 0 htmltext_ini = "<html><head><title>Pk Info</title></head><body><table width=300><tr><td><font color =\"FF00FF\"></td><td><center><font color =\"FFFF00\">Player</color></center></td><td><center>Kills</center></td></tr>" htmltext_info ="" color = 1 pos = 0 con = L2DatabaseFactory.getInstance().getConnection() pks = con.prepareStatement("SELECT char_name,pkkills FROM characters WHERE pkkills>0 and accesslevel=0 order by pkkills desc limit 30") rs = pks.executeQuery() while (rs.next()) : char_name = rs.getString("char_name") char_pkkills = rs.getString("pkkills") total_asesinados = total_asesinados + int(char_pkkills) pos = pos + 1 posstr = str(pos) if color == 1: color_text = "<font color =\"00FFFF\">" color = 2 htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>" elif color == 2: color_text = "<font color =\"FF0000\">" color = 1 htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>" htmltext_end = "</table><center><font color=\"FFFFFF\">" + "A Total of " + str(total_asesinados) + " Pk's.</center></body></html>" htmltext_pklist = htmltext_ini + htmltext_info + htmltext_end con.close() return htmltext_pklist elif event == "1" and cantidad_pago < 0 : htmltext = "<html><head><title>PK info Online</title></head><body><font color =\"FF0000\">Primero pagame...!! son 0 adenas.</body></html>" return htmltext # PvP info if event == "2" and cantidad_pago >= 0 : st.takeItems(Precio_ID,0) total_asesinados = 0 htmltext_ini = "<html><head><title>PvP info</title></head><body><table width=300><tr><td><font color =\"FF00FF\"></td><td><center><font color =\"FFFF00\">Player</color></center></td><td><center>Kills</center></td></tr>" htmltext_info ="" color = 1 pos = 0 con = L2DatabaseFactory.getInstance().getConnection() pks = con.prepareStatement("SELECT char_name,pvpkills FROM characters WHERE pvpkills>0 and accesslevel=0 order by pvpkills desc limit 30") rs = pks.executeQuery() while (rs.next()) : char_name = rs.getString("char_name") char_pkkills = rs.getString("pvpkills") total_asesinados = total_asesinados + int(char_pkkills) pos = pos + 1 posstr = str(pos) if color == 1: color_text = "<font color =\"00FFFF\">" color = 2 htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>" elif color == 2: color_text = "<font color =\"FF0000\">" color = 1 htmltext_info = htmltext_info + "<tr><td><center><font color =\"FF00FF\">" + posstr + "</td><td><center>" + color_text + char_name +"</center></td><td><center>" + char_pkkills + "</center></td></tr>" htmltext_end = "</table><center><font color=\"FFFFFF\">" + "A Total of " + str(total_asesinados) + " Kills.</center></body></html>" htmltext_pklist = htmltext_ini + htmltext_info + htmltext_end con.close() return htmltext_pklist elif event == "2" and cantidad_pago < 0 : htmltext = "<html><head><title>PK info</title></head><body><font color =\"FF0000\">Primero pagame...!! son 0 adenas.</body></html>" return htmltext QUEST = Quest(QuestId,str(QuestId) + "_" + QuestName,QuestDesc) CREATED=State('Start',QUEST) STARTED=State('Started',QUEST) COMPLETED=State('Completed',QUEST) QUEST.setInitialState(CREATED) for npcId in NPC: QUEST.addStartNpc(npcId) QUEST.addTalkId(npcId) -
error se npc top pvp/pk gia interlude
thepsolartek posted a question in Request Server Development Help [Greek]
exw ena error se ena top pvp/pk gia interlude. ne men perneitai nai men emfanizetai. alla otan pataw na m deiksei px pios einai 1os sto top pvp list h sto top pk list m bgazei sciprt error ti prepei na kanw? -
an to exei kapios as help!
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
paides afiste thn mask brika kapia alla acessories alla exw error sto na kanw to armorgrp kai to itemname-e.dat m bgazei mia malakia mporei kapios na mpei sto pc m na me help? -
an to exei kapios as help!
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
nop dn leitourghse to xml opws eipe o hellogirls. xml h8ela na pw malakia m fanky to eida kai egw :P -
an to exei kapios as help!
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
na m breis ena file m. valanth psaxnw to xml apo thn epic mask mono to xml 8elw dld ayto p mpainei sto stats/armor to mono p kserw einai oti to id ths mask einai 9800 -
apo configs nmz to exei to poso anebazoun
-
an to exei kapios as help!
thepsolartek posted a question in Request Server Development Help [Greek]
paides xriazomai to xml apo thn epic mask to id einai 9800 opios to exei as m to dwsei please dokimasa polla links gia interlude alla einai dead! -
HELP lIGO SE ENA ERROR ME GAMESERVER !
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
thanks file m. paides me boh8hse o shadow please lock to topic -
HELP lIGO SE ENA ERROR ME GAMESERVER !
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
ok -
HELP lIGO SE ENA ERROR ME GAMESERVER !
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
ti oreksh re plaka kanete 7 ores prospa8w kai dn exw kanei tpt mpeite ligo kapios na dei ti exw kanei la8os -
HELP lIGO SE ENA ERROR ME GAMESERVER !
thepsolartek posted a question in Request Server Development Help [Greek]
Paides gia na mhn polilogw as mpei kapios sto pc m na m sikwsei ligo ena server l2j frozen dn exw katalabei xristo -
help ligo se mia malakia
thepsolartek replied to thepsolartek's question in Request Server Development Help [Greek]
ok paides to brika lock it