Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Metin2 > Metin2 Private Server
You last visited: Today at 19:30

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

Advertisement



Energy System und Auto Pot Probleme

Discussion on Energy System und Auto Pot Probleme within the Metin2 Private Server forum part of the Metin2 category.

Reply
 
Old   #1
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
Auto Pot Probleme

Ich habe paar Probleme mit autopot

Auto Pots..


Wenn ich die Auto pots aktiviere kommen keine effecte beim pot icon ...

PS:

Hier ein Screen wo es noch geklappt hat :



aber jetzt klappt das net mehr
hab nur Energy System eingefügt
.Despero™ is offline  
Old 06/20/2013, 14:24   #2
 
elite*gold: 0
Join Date: May 2010
Posts: 152
Received Thanks: 7
hm habe das selbe problem sag mir bescheid wenn du weißt an was es lag
DerGamer121 is offline  
Old 06/20/2013, 15:34   #3
 
elite*gold: 269
Join Date: Jun 2013
Posts: 370
Received Thanks: 93
Guck dir noch mal genau das Tuturial an und dann sag mir bescheid wenn der Fehler noch besteht.
,Incredible' is offline  
Old 06/20/2013, 15:49   #4
 
elite*gold: 5
Join Date: Mar 2013
Posts: 1,986
Received Thanks: 2,254
Quote:
Originally Posted by .Weezy™ View Post
PHP Code:
# option
IN_GAME_SHOP_ENABLE 1
CONSOLE_ENABLE 
0

PVPMODE_ENABLE 
1
PVPMODE_TEST_ENABLE 
0
PVPMODE_ACCELKEY_ENABLE 
1
PVPMODE_ACCELKEY_DELAY 
0.5
PVPMODE_PROTECTED_LEVEL 
30
ENERGY 
0
ENERGY_END_TIME 
0
ENERGY_TYPE 
0
ENABLE_ENERGY_SYSTEM 
1  

FOG_LEVEL0 
4800.0
FOG_LEVEL1 
9600.0
FOG_LEVEL2 
12800.0
FOG_LEVEL 
FOG_LEVEL0
FOG_LEVEL_LIST
=[FOG_LEVEL0FOG_LEVEL1FOG_LEVEL2]        

CAMERA_MAX_DISTANCE_SHORT 2500.0
CAMERA_MAX_DISTANCE_LONG 
3500.0
CAMERA_MAX_DISTANCE_LIST
=[CAMERA_MAX_DISTANCE_SHORTCAMERA_MAX_DISTANCE_LONG]
CAMERA_MAX_DISTANCE CAMERA_MAX_DISTANCE_SHORT

CHRNAME_COLOR_INDEX 
0

ENVIRONMENT_NIGHT
="d:/ymir work/environment/moonlight04.msenv"

# constant
GM_MARK 0
HIGH_PRICE 
500000
MIDDLE_PRICE 
50000
ERROR_METIN_STONE 
28960
SUB2_LOADING_ENABLE 
1
EXPANDED_COMBO_ENABLE 
1
CONVERT_EMPIRE_LANGUAGE_ENABLE 
1
USE_ITEM_WEAPON_TABLE_ATTACK_BONUS 
0
ADD_DEF_BONUS_ENABLE 
1
LOGIN_COUNT_LIMIT_ENABLE 
0

USE_SKILL_EFFECT_UPGRADE_ENABLE 
1

VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD 
1
GUILD_MONEY_PER_GSP 
100
GUILD_WAR_TYPE_SELECT_ENABLE 
1
TWO_HANDED_WEAPON_ATT_SPEED_DECREASE_VALUE 
0

HAIR_COLOR_ENABLE 
1
ARMOR_SPECULAR_ENABLE 
1
WEAPON_SPECULAR_ENABLE 
1
SEQUENCE_PACKET_ENABLE 
1
KEEP_ACCOUNT_CONNETION_ENABLE 
1
MINIMAP_POSITIONINFO_ENABLE 
0
CONVERT_EMPIRE_LANGUAGE_ENABLE 
0
USE_ITEM_WEAPON_TABLE_ATTACK_BONUS 
0
ADD_DEF_BONUS_ENABLE 
0
LOGIN_COUNT_LIMIT_ENABLE 
0
PVPMODE_PROTECTED_LEVEL 
15
TWO_HANDED_WEAPON_ATT_SPEED_DECREASE_VALUE 
10

isItemDropQuestionDialog 
0
killgui    
0

def GET_ITEM_DROP_QUESTION_DIALOG_STATUS
():
    global 
isItemDropQuestionDialog
    
return isItemDropQuestionDialog

def SET_ITEM_DROP_QUESTION_DIALOG_STATUS
(flag):
    global 
isItemDropQuestionDialog
    isItemDropQuestionDialog 
flag

import app
import net

########################

def SET_DEFAULT_FOG_LEVEL():
    global 
FOG_LEVEL
    app
.SetMinFog(FOG_LEVEL)

def SET_FOG_LEVEL_INDEX(index):
    global 
FOG_LEVEL
    
global FOG_LEVEL_LIST
    
try:
        
FOG_LEVEL=FOG_LEVEL_LIST[index]
    
except IndexError:
        
FOG_LEVEL=FOG_LEVEL_LIST[0]
    
app.SetMinFog(FOG_LEVEL)

def GET_FOG_LEVEL_INDEX():
    global 
FOG_LEVEL
    
global FOG_LEVEL_LIST
    
return FOG_LEVEL_LIST.index(FOG_LEVEL)

########################

def SET_DEFAULT_CAMERA_MAX_DISTANCE():
    global 
CAMERA_MAX_DISTANCE
    app
.SetCameraMaxDistance(CAMERA_MAX_DISTANCE)

def SET_CAMERA_MAX_DISTANCE_INDEX(index):
    global 
CAMERA_MAX_DISTANCE
    
global CAMERA_MAX_DISTANCE_LIST
    
try:
        
CAMERA_MAX_DISTANCE=CAMERA_MAX_DISTANCE_LIST[index]
    
except:
        
CAMERA_MAX_DISTANCE=CAMERA_MAX_DISTANCE_LIST[0]

    
app.SetCameraMaxDistance(CAMERA_MAX_DISTANCE)

def GET_CAMERA_MAX_DISTANCE_INDEX():
    global 
CAMERA_MAX_DISTANCE
    
global CAMERA_MAX_DISTANCE_LIST
    
return CAMERA_MAX_DISTANCE_LIST.index(CAMERA_MAX_DISTANCE)

########################

import chrmgr
import player
import app

def SET_DEFAULT_CHRNAME_COLOR
():
    global 
CHRNAME_COLOR_INDEX
    chrmgr
.SetEmpireNameMode(CHRNAME_COLOR_INDEX)

def SET_CHRNAME_COLOR_INDEX(index):
    global 
CHRNAME_COLOR_INDEX
    CHRNAME_COLOR_INDEX
=index
    chrmgr
.SetEmpireNameMode(index)

def GET_CHRNAME_COLOR_INDEX():
    global 
CHRNAME_COLOR_INDEX
    
return CHRNAME_COLOR_INDEX

def SET_VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD
(index):
    global 
VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD
    VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD 
index

def GET_VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD
():
    global 
VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD
    
return VIEW_OTHER_EMPIRE_PLAYER_TARGET_BOARD

def SET_DEFAULT_CONVERT_EMPIRE_LANGUAGE_ENABLE
():
    global 
CONVERT_EMPIRE_LANGUAGE_ENABLE
    net
.SetEmpireLanguageMode(CONVERT_EMPIRE_LANGUAGE_ENABLE)

def SET_DEFAULT_USE_ITEM_WEAPON_TABLE_ATTACK_BONUS():
    global 
USE_ITEM_WEAPON_TABLE_ATTACK_BONUS
    player
.SetWeaponAttackBonusFlag(USE_ITEM_WEAPON_TABLE_ATTACK_BONUS)

def SET_DEFAULT_USE_SKILL_EFFECT_ENABLE():
    global 
USE_SKILL_EFFECT_UPGRADE_ENABLE
    app
.SetSkillEffectUpgradeEnable(USE_SKILL_EFFECT_UPGRADE_ENABLE)

def SET_TWO_HANDED_WEAPON_ATT_SPEED_DECREASE_VALUE():
    global 
TWO_HANDED_WEAPON_ATT_SPEED_DECREASE_VALUE
    app
.SetTwoHandedWeaponAttSpeedDecreaseValue(TWO_HANDED_WEAPON_ATT_SPEED_DECREASE_VALUE)

########################
import item

ACCESSORY_MATERIAL_LIST 
= [506235062450625506265062750628506295063050631506325063350634]
#ACCESSORY_MATERIAL_LIST = [50623, 50623, 50624, 50624, 50625, 50625, 50626, 50627, 50628, 50629, 50630, 50631, 50632, 50633, 
#                50623, 50623, 50624, 50624, ]

def GET_ACCESSORY_MATERIAL_VNUM(vnumsubType):
    
ret vnum

    
if vnum >= 16210 and vnum <= 16219:
        return 
50625

    
if item.ARMOR_WRIST == subType:    
        
WRIST_ITEM_VNUM_BASE 14000
        ret 
-= WRIST_ITEM_VNUM_BASE
    elif item
.ARMOR_NECK == subType:
        
NECK_ITEM_VNUM_BASE 16000
        ret 
-= NECK_ITEM_VNUM_BASE
    elif item
.ARMOR_EAR == subType:
        
EAR_ITEM_VNUM_BASE 17000
        ret 
-= EAR_ITEM_VNUM_BASE

    type 
ret/20

    
if type<or type>=len(ACCESSORY_MATERIAL_LIST):
        
type = (ret-170) / 20
        
if type<or type>=len(ACCESSORY_MATERIAL_LIST):
            return 
0

    
return ACCESSORY_MATERIAL_LIST[type]

## ÀÚµ¿¹°¾à (HP: #72723 ~ #72726, SP: #72727 ~ #72730)

# ÇØ´ç vnumÀÌ ÀÚµ¿¹°¾àÀΰ¡?
def IS_AUTO_POTION(itemVnum):
    return 
IS_AUTO_POTION_HP(itemVnum) or IS_AUTO_POTION_SP(itemVnum)
    
# ÇØ´ç vnumÀÌ HP ÀÚµ¿¹°¾àÀΰ¡?
def IS_AUTO_POTION_HP(itemVnum):
    if 
72723 <= itemVnum and 72726 >= itemVnum:
        return 
1
    elif itemVnum 
>= 76021 and itemVnum <= 76022:        ## »õ·Î µé¾î°£ ¼±¹°¿ë È*·æÀÇ Ãູ
        
return 1
        
    
return 0
    
# ÇØ´ç vnumÀÌ SP ÀÚµ¿¹°¾àÀΰ¡?
def IS_AUTO_POTION_SP(itemVnum):
    if 
72727 <= itemVnum and 72730 >= itemVnum:
        return 
1
    elif itemVnum 
>= 76004 and itemVnum <= 76005:        ## »õ·Î µé¾î°£ ¼±¹°¿ë ¼ö·æÀÇ Ãູ
        
return 1
                
    
return 0
#GMBoard
GM1Online 
GM2Online 

GM3Online 

GM4Online 

GM5Online 

GM6Online 
0

GM1Name 
"[SA]Weezy" 
GM2Name "[SA]two4" 
GM3Name "[GA]-" 
GM4Name "[GM]-" 
GM5Name "[GM]-" 
GM6Name "[TGM]-" 
hmm ich weiß nicht das mit der Constinfo ... es gibt 2 PVP_MODE´s

PHP Code:
Nun öffnet ihr eure constinfo.py
Dort addet ihr unter PVPMODE_PROTECTED_LEVEL dies

PHP
-Code:
ENERGY 0
ENERGY_END_TIME 
0
ENERGY_TYPE 
0
ENABLE_ENERGY_SYSTEM 

Ist vollkommen egal! Einfach unter eins setzen!
xGr33n is offline  
Thanks
1 User
Old 06/20/2013, 15:51   #5
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
Ja aber bei welchen den ?
.Despero™ is offline  
Old 06/20/2013, 15:53   #6
 
elite*gold: 5
Join Date: Mar 2013
Posts: 1,986
Received Thanks: 2,254
PHP Code:
# Energiesystem
ENERGY 0
ENERGY_END_TIME 
0
ENERGY_TYPE 
0
ENABLE_ENERGY_SYSTEM 
1  
# option 
IN_GAME_SHOP_ENABLE 
CONSOLE_ENABLE 

geht auch und ist übersichtlicher!
xGr33n is offline  
Thanks
1 User
Old 06/20/2013, 15:55   #7
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
Ja aber die anzeige fehlt immernoch..
.Despero™ is offline  
Old 06/20/2013, 15:56   #8
 
elite*gold: 5
Join Date: Mar 2013
Posts: 1,986
Received Thanks: 2,254
Richtig gepackt? Syserr gibt's dann auch 100%!
xGr33n is offline  
Thanks
1 User
Old 06/20/2013, 15:58   #9
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
Keine Syserr fehler die Datei ist leer garnichts steht da..

XML´s von ...

ETC:
Code:
		<File archivedPath="d:/ymir work/ui/pattern/EnergyGauge/energygauge_base.tga" type="2"><![CDATA[ETC_datafolder\ymir work\ui\pattern\EnergyGauge\energygauge_base.tga]]></File>
		<File archivedPath="d:/ymir work/ui/pattern/EnergyGauge/gauge_empty.tga" type="2"><![CDATA[ETC_datafolder\ymir work\ui\pattern\EnergyGauge\gauge_empty.tga]]></File>
		<File archivedPath="d:/ymir work/ui/pattern/EnergyGauge/gauge_full.tga" type="2"><![CDATA[ETC_datafolder\ymir work\ui\pattern\EnergyGauge\gauge_full.tga]]></File>
		<File archivedPath="d:/ymir work/ui/pattern/EnergyGauge/gauge_hungry.tga" type="2"><![CDATA[ETC_datafolder\ymir work\ui\pattern\EnergyGauge\gauge_hungry.tga]]></File>
Locale_de
Code:
		<File archivedPath="locale/de/ui/energybar.py" type="1"><![CDATA[locale_de_datafolder\locale\de\ui\energybar.py]]></Fil
e>
.Despero™ is offline  
Old 06/20/2013, 16:00   #10
 
elite*gold: 5
Join Date: Mar 2013
Posts: 1,986
Received Thanks: 2,254
Lad dir mal den anhang runter, entpack das archiv und schreib noch die Index
Energypics dazu!
Attached Files
File Type: rar test.rar (11.6 KB, 9 views)
xGr33n is offline  
Old 06/20/2013, 20:46   #11
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
Klappt leider nicht.
Ich hab es so in die Index eingetragen

d:/ymir work/ui/pattern
Energypics
und

Energypics
*
.Despero™ is offline  
Old 06/20/2013, 21:04   #12
 
nostradame37's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 2,504
Received Thanks: 870
der effeckt verschwindet weil du hoechstwarscheinlich ein neues clientdesign eingefuegt hast
nostradame37 is offline  
Old 06/21/2013, 18:38   #13
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
Ja aber bevor ich energy system eingefügt hab ging es.. aber nachdem ich energy system eingefügt habe war icon effect weg..

ABer Enegy system ist gerad wichtiger..
könnte mir jemand sagen wie ich es beheben kann..
.Despero™ is offline  
Old 06/22/2013, 21:22   #14
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
#push

so hab energy system fehler gelöst..

nur noch autopots prob.
.Despero™ is offline  
Old 06/24/2013, 14:15   #15
 
.Despero™'s Avatar
 
elite*gold: 75
Join Date: Mar 2012
Posts: 2,655
Received Thanks: 742
push
.Despero™ is offline  
Reply


Similar Threads Similar Threads
Energy system
05/31/2013 - Metin2 Private Server - 3 Replies
Hallo, Ich habe ein Problem mit meinem Energy System undzwar, ich kann keine EQ teil drauziehen, doch andere sachen kann ich drauf ziehen zbs kostüm da sagt er mir das gegenstand ist nicht geeignet, aber beim EQ passiert garnix was ist da falsch? mfg
Energy System Help
11/08/2012 - Metin2 Private Server - 7 Replies
Abend Freunde, Ich habe heute versucht das Energy System in einen Clienten einzufügen, leider ist es nicht so verlaufen wie ich es mir erhofft habe. Deswegen meine Frage Könnte einer von euch mir das per Tv einrichten ? Die nötigen sachen habe ich natürlich. Rocky
[VK] Energy System 50€
10/07/2012 - Metin2 Trading - 16 Replies
Moin Com. Da ich gerade bissel Geld brauche verkaufe ich hier mein Energy System. Es ist wie auf .de nur die Bonis sind halt ein bisschen anders. Es arbeitet per cmd chat und benötigt daher keine neue oder bin. Energie-System dort könnt ihr sehen was es für ein System ist und was es bringt. Kosten 50€ nehme PSC/Amazongutscheine Bei Interesse bitte eine PN.
Energy System?
09/08/2012 - Metin2 Private Server - 0 Replies
hallo ich wollte ma fragen ob bei euch euch das energy system buggt undzwar funktioniert das item mal und mal nicht also der energiekristall(51002) type ist auf 18 unso quest ist drine als einzigste questlib ist alles drin vpc sagt nix clientside auch ist das bei euch auch so bzw wie fixxt man es?
[DIF] System Energy By Sui
08/05/2012 - Metin2 PServer Guides & Strategies - 33 Replies
It couldn't work SuicideRlz is Jew



All times are GMT +2. The time now is 19:30.


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.