Jump to content

CriticalError

L2Client Developer
  • Posts

    6,519
  • Credits

  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    0%

Everything posted by CriticalError

  1. well my friend thanks, my mistake is trying open the file without rename it to -k, because the ddf load -k and not -e :) but anyway thanks a lot it work fine now.
  2. well chandy adapt it to CT2.3 but original credits are for NCSOFT :D, this is Dynasty Weapons texture painted ^^ anyway thanks for sharing but I have it long time.
  3. nice one, maybe you can adapt some of them!!!!!!!!!!!!!!!!!!! http://i.imgur.com/Z60MU.png[/img] http://i.imgur.com/5i24O.png[/img] http://i.imgur.com/XZ6G0.png[/img] http://i.imgur.com/Yzkq9.png[/img] http://i.imgur.com/bGExy.png[/img]
  4. I know is CT2.3 but before think they are Interlude not CT2.3 anyway right about is Black Vesper Armor renamed to Dread, about Weapons too, is Black Vesper renamed to Dread Weapons. ---->>>> Black Vesper Armor [CT2.3] via PM. Weapons can't found, all links dead.
  5. ok I lock topic, you need something more PM me for unlock it. Locked.
  6. anyway thanks a lot for all, I lock topic because I solve tip.
  7. the armos is old of L2Pride Interlude Server. about weapons not sure, biy sure are of L2Pride too.
  8. yes I do, here I post original code of where I get, but anyway adding l2databasefactory still same x_X anyway thanks for your answer.
  9. Hello to all, well I trying inject this in my server, but when load consoles give error saying it. Error on: C:\Users\joel\Desktop\Copia de L2DoMMo\GameServer\Data\scripts\custom\80300_rank\__init__.py.error.log Line: -1 - Column: -1 Traceback (innermost last): File "__init__.py", line 7, in ? ImportError: cannot import name L2DatabaseFactory #Jython-based miss queen implementation v0.1 #written by DrLecter, based in Eduu, biti and Newbie contributions. import sys from com.l2jinn.gameserver.model.quest import State from com.l2jinn.gameserver.model.quest import QuestState from com.l2jinn.gameserver.model.quest.jython import QuestJython as JQuest print "importing custom: NPC Ranking By NeferTiti" # *************************************** # Inicializacion de Variables del Quest * # *************************************** NPC=[80300] Precio_ID = 57 QuestId = 80300 QuestName = "rank" QuestDesc = "custom" InitialHtml = "1.htm" # ************************ # Creando la Clase Quest * # ************************ class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) # *********************** # Si hablas con el NPC: * # *********************** def onTalk (self,npc,player): return InitialHtml # *********************** # ***************************************************** # Ahora gobernamos los eventos que vienen desde el HTML # ***************************************************** def onEvent(self,event,st): htmltext = event cantidad_pago = st.getQuestItemsCount(Precio_ID) # ********* # PK info * # ********* if event == "1" and cantidad_pago >= 3000 : st.takeItems(Precio_ID,3000) total_asesinados = 0 htmltext_ini = "<html><head><title>Pk Info Online</title></head><body><table width=300><tr><td><font color =\"FF00FF\">Pos.</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 < 3000 : htmltext = "<html><head><title>PK info Online</title></head><body><font color =\"FF0000\">Primero pagame...!! son 3000 adenas.</body></html>" return htmltext # ********** # PvP info * # ********** if event == "2" and cantidad_pago >= 3000 : st.takeItems(Precio_ID,3000) total_asesinados = 0 htmltext_ini = "<html><head><title>PvP info Online</title></head><body><table width=300><tr><td><font color =\"FF00FF\">Pos.</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 < 3000 : htmltext = "<html><head><title>PK info Online</title></head><body><font color =\"FF0000\">Primero pagame...!! son 3000 adenas.</body></html>" return htmltext # ************* # Adenas info * # ************* if event == "3" and cantidad_pago >= 100000 : st.takeItems(Precio_ID,100000) total_cantidad = 0 htmltext_ini = "<html><head><title>Adena info Online</title></head><body><table width=300><tr><td><font color =\"FF00FF\">Pos.</td><td><center><font color =\"FFFF00\">*** Name ***</color></center></td><td><center>*** Adenas ***</center></td></tr>" htmltext_info ="" color = 1 pos = 0 con = L2DatabaseFactory.getInstance().getConnection() pks = con.prepareStatement("SELECT count,owner_id FROM items WHERE item_id=57 order by count desc limit 20") rs = pks.executeQuery() while (rs.next()) : cantidad = rs.getString("count") pj_id = rs.getString("owner_id") total_cantidad = total_cantidad + long(cantidad) pos = pos + 1 posstr = str(pos) charname = con.prepareStatement("SELECT char_name FROM characters WHERE charId=" + pj_id) rs2 = charname.executeQuery() while (rs2.next()) : char_name = rs2.getString("char_name") 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>" + cantidad + "</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>" + cantidad + "</center></td></tr>" htmltext_end = "</table><center><font color=\"FFFFFF\">" + "Los TOPS suman " + str(total_cantidad) + " adenas.</center></body></html>" htmltext_pklist = htmltext_ini + htmltext_info + htmltext_end con.close() return htmltext_pklist elif event == "3" and cantidad_pago < 3000 : htmltext = "<html><head><title>Adenas info Online</title></head><body><font color =\"FF0000\">Primero pagame...!! son 100k adenas.</body></html>" return htmltext # ************************************************* # Insertando Quest en la lista de Quest disponibles # ************************************************* QUEST = Quest(QuestId,str(QuestId) + "_" + QuestName,QuestDesc) for npcId in NPC: QUEST.addStartNpc(npcId) QUEST.addTalkId(npcId)
  10. yeah he adapt the mobs with L2TOOL and can't link sound to animations, I try help him via msn but don't remember how do it before and for now leave work in L2, anyway I remember I told you here or via MSN.
  11. hello all, well some users asked to upload this, so here was boring design as more models, thanks to the Sheva mesh = UKX, what I did was make the new texture designs for other claims are for Shev. Credits by SHEV and me for editions.
  12. well for me I don't think is good touch maps, because sure later when try telerport to some areas you get criticalerror because this files copied of other client or don't know what do.
  13. ecause is a map files, not effect files bro, you check files are unr.
  14. I know man, nobody say nothing to you, relax anyway take care.
  15. nice one, look very cool man, thanks a lot for work.
  16. yeah for this reason have low quality models, wow is a good game but don't have good quality models :)
  17. well good job, I see something familiar in this weapons, I know see in some MMORGP but don't remember where ^^ a lot rips and modding but keep working.
  18. ok Locked, anyway the last time remember this can't be put here, the request topic is here [Request] Client Mods Help
  19. look good nice work but you forget edit texture in 3 weapon, the sphere part or whatever you wanna call is cyan not grey ^^ anyway keep up.
  20. what the hell man!!! what you upload there? maps folder with all files, is a joke?
×
×
  • Create New...