Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/04/15 in all areas

  1. Hi, Metin2Dev Each version is compatible. information; root/uiSystemOption.py Open.. Search; Kod: self.tilingModeButtonList = [] Add; Kod: self.ctrlShadowQuality = 0 Search; Kod: self.tilingApplyButton=GetObject("tiling_apply") Add; Kod: self.ctrlShadowQuality = GetObject("shadow_bar") Search; Kod: self.ctrlSoundVolume.SetEvent(ui.__mem_func__(self.OnChangeSoundVolume)) Add; Kod: self.ctrlShadowQuality.SetSliderPos(float(systemSetting.GetShadowLevel()) / 5.0) self.ctrlShadowQuality.SetEvent(ui.__mem_func__(self.OnChangeShadowQuality)) Search; Kod: def OnChangeSoundVolume(self): pos = self.ctrlSoundVolume.GetSliderPos() snd.SetSoundVolumef(pos) systemSetting.SetSoundVolumef(pos) Add; Kod: def OnChangeShadowQuality(self): pos = self.ctrlShadowQuality.GetSliderPos() systemSetting.SetShadowLevel(int(pos / 0.2)) uiscript/SystemOptionDialog.py Open.. Search; Kod: { "name" : "tiling_apply", "type" : "button", "x" : 90+100, "y" : 185, "text" : uiScriptLocale.OPTION_TILING_APPLY, "default_image" : ROOT_PATH + "middle_Button_01.sub", "over_image" : ROOT_PATH + "middle_Button_02.sub", "down_image" : ROOT_PATH + "middle_Button_03.sub", }, Add; Kod: { "name" : "shadow_mode", "type" : "text", "x" : 30, "y" : 210, "text" : uiScriptLocale.OPTION_SHADOW, }, { "name" : "shadow_bar", "type" : "sliderbar", "x" : 110, "y" : 210, },
    4 points
  2. M2 Download Center Download Here ( Internal ) V4 (ZED) V3 (MALI61) (MAX 2) V2 (KEN) V1 (KORAY)
    1 point
  3. open introselect.py Search: self.destGauge = [ float(valueHTH) / 380, float(valueINT) / 380, float(valueSTR) / 380, float(valueDEX) / 380 ] Change: self.destGauge = [ float(valueHTH) / 90, # max stat float(valueINT) / 90, # max stat float(valueSTR) / 90, # max stat float(valueDEX) / 90 # max stat ] open introcreate.py Search: float(self.stat[0])/float(statSummary), float(self.stat[1])/float(statSummary), float(self.stat[2])/float(statSummary), float(self.stat[3])/float(statSummary), Change: float(self.stat[0])/90, #max stat float(self.stat[1])/90, #max stat float(self.stat[2])/90, #max stat float(self.stat[3])/90, #max stat [Hidden Content] [Hidden Content] Best Regards Rideas
    1 point
  4. Haha, I really like those uploaders, who upload something then delete it /emoticons/default_smile.png. Here is the new link for the beta-costumes(razador+nemere?): [Hidden Content] [Hidden Content]
    1 point
  5. Sometimes you gotta be old to be new.
    1 point
  6. Try! Rewrite this: pkMyChar->GetDesc()->DelayedDisconnect("5"); To: pkMyChar->GetDesc()->DelayedDisconnect(5);
    1 point
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.