Register for your free account! | Forgot your password?

You last visited: Today at 23:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[RELEASE] Costume System

Discussion on [RELEASE] Costume System within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Reply
 
Old 06/09/2013, 20:48   #211
 
elite*gold: 0
Join Date: Dec 2010
Posts: 80
Received Thanks: 5
work's
MrFrancisc is offline  
Old 06/09/2013, 21:31   #212
 
elite*gold: 0
Join Date: Nov 2011
Posts: 84
Received Thanks: 2
Hello!
Pls give me costum query for mysql,item_proto and item_list.
MakkeNN is offline  
Old 06/09/2013, 22:02   #213


 
#CHaCKi's Avatar
 
elite*gold: 0
Join Date: Jun 2013
Posts: 6,368
Received Thanks: 577
great, thanks a lot!
#CHaCKi is offline  
Old 06/09/2013, 22:24   #214
 
elite*gold: 0
Join Date: Jul 2012
Posts: 33
Received Thanks: 3
client by invoice is good.
Fun4Kids is offline  
Old 06/09/2013, 22:56   #215

 
Ocelot2606's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 4,086
Received Thanks: 3,786
So endlich klappt alles einwandfrei auch mit dem Invoice clienten
Ocelot2606 is offline  
Old 06/10/2013, 13:39   #216
 
s3da71v's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 92
Received Thanks: 58
Costume don't show in costume window .. i try alll files .. and from official all .. can be a problem from game ?
s3da71v is offline  
Old 06/10/2013, 13:39   #217
 
xlExtraZ's Avatar
 
elite*gold: 251
Join Date: Sep 2012
Posts: 1,222
Received Thanks: 191
thx for relase
xlExtraZ is offline  
Old 06/10/2013, 15:13   #218
 
Invoice™'s Avatar
 
elite*gold: 0
Join Date: Nov 2012
Posts: 965
Received Thanks: 1,173
Quote:
Originally Posted by Ocelot2606 View Post
So endlich klappt alles einwandfrei auch mit dem Invoice clienten
hätte mich auch gewundert wenns mit meinem nicht gehen würde
Invoice™ is offline  
Old 06/10/2013, 15:48   #219

 
Ocelot2606's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 4,086
Received Thanks: 3,786
Quote:
Originally Posted by Invoice™ View Post
hätte mich auch gewundert wenns mit meinem nicht gehen würde
Man muss paar Datein ersetzen damit es mit deinem Clienten geht
Ocelot2606 is offline  
Old 06/10/2013, 17:03   #220
 
elite*gold: 0
Join Date: Apr 2009
Posts: 121
Received Thanks: 780
Okay, could someone please explain to me what mysql_query is? Is it a questlib extension, or a library-added function? (in the last case, the fact that it stops working would make some sense)
I'm not using queries in my quests, not with that function at least, so I can't really test nor tell anything about that. I'd just need some more information.
ricky92 is offline  
Old 06/10/2013, 18:09   #221
 
elite*gold: 0
Join Date: Jan 2009
Posts: 96
Received Thanks: 42
Quote:
Originally Posted by s3da71v View Post
Costume don't show in costume window .. i try alll files .. and from official all .. can be a problem from game ?
You need just 2089M GAME!!! And 2013 launcer i use r34649
born2rule is offline  
Old 06/10/2013, 18:23   #222
 
Chikyou's Avatar
 
elite*gold: 0
Join Date: Oct 2012
Posts: 114
Received Thanks: 72
Quote:
Originally Posted by ricky92 View Post
Okay, could someone please explain to me what mysql_query is? Is it a questlib extension, or a library-added function? (in the last case, the fact that it stops working would make some sense)
I'm not using queries in my quests, not with that function at least, so I can't really test nor tell anything about that. I'd just need some more information.
Code:
function split(str, delim, maxNb)  
    if str == nil then return str end  
    if string.find(str, delim) == nil then return { str } end  
    if maxNb == nil or maxNb < 1 then maxNb = 0 end  
    local result = {}  
    local pat = "(.-)" .. delim .. "()"  
    local nb = 0  
    local lastPos  
    for part, pos in string.gfind(str, pat) do  
        nb = nb + 1  
        result[nb] = part  
        lastPos = pos  
        if nb == maxNb then break end  
    end  
    if nb ~= maxNb then result[nb + 1] = string.sub(str, lastPos) end  
    return result  
end  



mysql_query = function(query)  
    local rt = io.open('CONFIG','r'):read('*all')  
    local pre= string.gsub(rt,'.+PLAYER_SQL:%s(%S+)%s(%S+)%s(%S+)%s(%S+).+','-h%1 -u%2 -p%3 -D%4')  
    math.randomseed(os.time())  
    local fi,t,out = 'mysql_data_'..math.random(10^9)+math.random(2^4,2^10),{},{}  
    os.execute('mysql '..pre..' --e='..string.format('%q',query)..' > '..fi)    
    for av in io.open(fi,'r'):lines() do table.insert(t,split(av,'\t')) end; os.remove(fi);  
    for i = 2, table.getn(t) do table.foreach(t[i],function(a,b)  
        out[i-1]        = out[i-1] or {}  
        out[i-1][a]        = b  
        out[t[1][a]]    = out[t[1][a]] or {}  
        out[t[1][a]][i-1]    = b  
    end) end  
    return out  
end
Chikyou is offline  
Old 06/10/2013, 18:33   #223
 
s3da71v's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 92
Received Thanks: 58
Just use Library +invoice client +uiscript.epk and eix from any official server(de,en,sg,etc)
and costume system will work 100 %
s3da71v is offline  
Old 06/10/2013, 18:59   #224
 
CoTzRaiZ-PaiNx's Avatar
 
elite*gold: 30
Join Date: Oct 2012
Posts: 1,388
Received Thanks: 243
Beim Drücken auf den Kostüm Button schließt sich der Client.
PHP Code:
uiInventory.py(line:74__LoadWindow
ui
.py(line:2623GetChild

CostumeWindow
.LoadWindow.BindObject exceptions.KeyError:CostumeSlot

0610 18
:53:24032 :: ============================================================================================================
0610 18:53:24032 :: Abort!!!! 
CoTzRaiZ-PaiNx is offline  
Old 06/10/2013, 19:15   #225
 
Zonni's Avatar
 
elite*gold: 100
Join Date: Feb 2008
Posts: 195
Received Thanks: 270
Quote:
Originally Posted by ricky92 View Post
Okay, could someone please explain to me what mysql_query is? Is it a questlib extension, or a library-added function? (in the last case, the fact that it stops working would make some sense)
I'm not using queries in my quests, not with that function at least, so I can't really test nor tell anything about that. I'd just need some more information.
For example, check this:
Zonni is offline  
Reply


Similar Threads Similar Threads
[Release]AddOn for Costume System :-)
06/09/2013 - Metin2 PServer Guides & Strategies - 32 Replies
Guten Abend, Ich möchte euch mit diesem Thread mein in 2 Minuten erstelltes AddOn für das Kostüm System geben. Es funktioniert für die Quest Version und für die Lib Version. Es ist ein kleines AddOn und gehört eigentlich in den Kleine Release Bereich, aber da ich dort bereits als letztes Gepostet habe, schreibe ich es hier rein. ;) Dieses AddOn bewirkt, das wenn ihr euer Kostüm System auszieht und es zurück in euer Inventar geht, nichts im Chat angezeigt wird (Beispiel: Du hast...
[Release] Costume System
05/25/2013 - Metin2 PServer Guides & Strategies - 21 Replies
. //Close
[Release] Costume system function
12/30/2012 - Metin2 PServer Guides & Strategies - 3 Replies
closed sry my fault
[RELEASE]Costume System's Dif
08/30/2012 - Metin2 PServer Guides & Strategies - 22 Replies
Hey guys in the end i discovered to costume system adding type 28. It was hard that just send me a private message, Greetz
[Release?]Costume-System
08/20/2012 - Metin2 PServer Guides & Strategies - 6 Replies
EDIT FAIL close request



All times are GMT +2. The time now is 23:18.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.