Register for your free account! | Forgot your password?

You last visited: Today at 17:56

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

Advertisement



[Mega Release]IntroLogo Client Tutorial

Discussion on [Mega Release]IntroLogo Client Tutorial within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Reply
 
Old 06/26/2014, 17:50   #46
 
elite*gold: 0
Join Date: Feb 2013
Posts: 43
Received Thanks: 0
After the logo the minimap.dds flashes for a moment. Why??
Andariel666 is offline  
Old 06/27/2014, 10:50   #47


 
MrTherzon's Avatar
 
elite*gold: 0
The Black Market: 180/0/1
Join Date: Dec 2012
Posts: 9,395
Received Thanks: 2,738
How to change the text in the intro?
MrTherzon is offline  
Old 06/27/2014, 12:34   #48
 
elite*gold: 0
Join Date: Dec 2013
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by .RC'MrTherzon View Post
How to change the text in the intro?
Changing the jpg files.


I have this error. I've copied what you do in the video.
Salvo96 is offline  
Old 06/27/2014, 15:17   #49
 
elite*gold: 0
Join Date: Feb 2013
Posts: 43
Received Thanks: 0
Quote:
Originally Posted by Salvo96 View Post
I have this error. I've copied what you do in the video.
Something is wrong in the networkmodule.py

I attached mine, it works perfectly for me.
Attached Files
File Type: rar networkmodule.rar (1.8 KB, 20 views)
Andariel666 is offline  
Old 06/27/2014, 16:00   #50
 
elite*gold: 0
Join Date: Dec 2013
Posts: 3
Received Thanks: 0
Quote:
Originally Posted by Andariel666 View Post
Something is wrong in the networkmodule.py

I attached mine, it works perfectly for me.
thanks a lot. This night i test it. But i think that this system doesn't work on all clients.
Salvo96 is offline  
Old 06/27/2014, 16:35   #51
 
DasSchwarzeT's Avatar
 
elite*gold: 399
Join Date: Sep 2011
Posts: 5,323
Received Thanks: 3,937
If you want to make the Intrologo disableable:

prototype.py:

PHP Code:
import dbg
import app
import localeInfo
import wndMgr
import systemSetting
import mouseModule
import networkModule
import uiCandidate
import constInfo
import musicInfo
import stringCommander



#bind_me(locals().values())

def RunApp():
    
musicInfo.LoadLastPlayFieldMusic()
    
    
app.SetHairColorEnable(constInfo.HAIR_COLOR_ENABLE)
    
app.SetArmorSpecularEnable(constInfo.ARMOR_SPECULAR_ENABLE)
    
app.SetWeaponSpecularEnable(constInfo.WEAPON_SPECULAR_ENABLE)

    
app.SetMouseHandler(mouseModule.mouseController)
    
wndMgr.SetMouseHandler(mouseModule.mouseController)
    
wndMgr.SetScreenSize(systemSetting.GetWidth(), systemSetting.GetHeight())

    try:
        
app.Create(localeInfo.APP_TITLEsystemSetting.GetWidth(), systemSetting.GetHeight(), 1)
    
except RuntimeErrormsg:
        
msg str(msg)
        if 
"CREATE_DEVICE" == msg:
            
dbg.LogBox("Sorry, Your system does not support 3D graphics,\r\nplease check your hardware and system configeration\r\nthen try again.")
        else:
            
dbg.LogBox("Metin2.%s" msg)
        return

    
app.SetCamera(1500.030.00.0180.0)

    
#Gets and sets the floating-point control word
    #app.SetControlFP()

    
if not mouseModule.mouseController.Create():
        return

    
mainStream networkModule.MainStream()
    
mainStream.Create()    
    
animationblock open("animation.txt""r")
    
aniinput animationblock.read()
    
animationblock.close()
    
#mainStream.SetLoadingPhase()

    
if aniinput == "1":
        
mainStream.SetLoginPhase()
    else:
        
mainStream.SetLogoPhase()
        
    
#mainStream.SetSelectCharacterPhase()
    #mainStream.SetCreateCharacterPhase()
    #mainStream.SetSelectEmpirePhase()
    #mainStream.SetGamePhase()
    
app.Loop()

    
mainStream.Destroy()

RunApp() 
After that create a animation.txt in the Metin2 folder. If you write a "1" its disabled. If you write something else, it's enabled.

Have fun!
DasSchwarzeT is offline  
Thanks
3 Users
Old 06/27/2014, 22:28   #52
 
elite*gold: 0
Join Date: Feb 2013
Posts: 43
Received Thanks: 0
Quote:
Originally Posted by DasSchwarzeT View Post
If you want to make the Intrologo disableable:

prototype.py:

PHP Code:
import dbg
import app
import localeInfo
import wndMgr
import systemSetting
import mouseModule
import networkModule
import uiCandidate
import constInfo
import musicInfo
import stringCommander



#bind_me(locals().values())

def RunApp():
    
musicInfo.LoadLastPlayFieldMusic()
    
    
app.SetHairColorEnable(constInfo.HAIR_COLOR_ENABLE)
    
app.SetArmorSpecularEnable(constInfo.ARMOR_SPECULAR_ENABLE)
    
app.SetWeaponSpecularEnable(constInfo.WEAPON_SPECULAR_ENABLE)

    
app.SetMouseHandler(mouseModule.mouseController)
    
wndMgr.SetMouseHandler(mouseModule.mouseController)
    
wndMgr.SetScreenSize(systemSetting.GetWidth(), systemSetting.GetHeight())

    try:
        
app.Create(localeInfo.APP_TITLEsystemSetting.GetWidth(), systemSetting.GetHeight(), 1)
    
except RuntimeErrormsg:
        
msg str(msg)
        if 
"CREATE_DEVICE" == msg:
            
dbg.LogBox("Sorry, Your system does not support 3D graphics,\r\nplease check your hardware and system configeration\r\nthen try again.")
        else:
            
dbg.LogBox("Metin2.%s" msg)
        return

    
app.SetCamera(1500.030.00.0180.0)

    
#Gets and sets the floating-point control word
    #app.SetControlFP()

    
if not mouseModule.mouseController.Create():
        return

    
mainStream networkModule.MainStream()
    
mainStream.Create()    
    
animationblock open("animation.txt""r")
    
aniinput animationblock.read()
    
animationblock.close()
    
#mainStream.SetLoadingPhase()

    
if aniinput == "1":
        
mainStream.SetLoginPhase()
    else:
        
mainStream.SetLogoPhase()
        
    
#mainStream.SetSelectCharacterPhase()
    #mainStream.SetCreateCharacterPhase()
    #mainStream.SetSelectEmpirePhase()
    #mainStream.SetGamePhase()
    
app.Loop()

    
mainStream.Destroy()

RunApp() 
After that create a animation.txt in the Metin2 folder. If you write a "1" its disabled. If you write something else, it's enabled.

Have fun!
Hm, very good idea. (+thanks given) I think we could build this function into the config file.


(Does somebody know the answer for my problem? Why flashes otu for a tiny moment the minimap.dd after the intro?)
Andariel666 is offline  
Old 06/27/2014, 22:56   #53
 
DasSchwarzeT's Avatar
 
elite*gold: 399
Join Date: Sep 2011
Posts: 5,323
Received Thanks: 3,937
Quote:
Originally Posted by Andariel666 View Post
Hm, very good idea. (+thanks given) I think we could build this function into the config file.


(Does somebody know the answer for my problem? Why flashes otu for a tiny moment the minimap.dd after the intro?)
Yes. Here in elitepvpers there is a source for a config.. There you can easily add my new config.
DasSchwarzeT is offline  
Old 06/28/2014, 00:15   #54
 
xCPx's Avatar
 
elite*gold: 20
Join Date: Jun 2011
Posts: 2,901
Received Thanks: 3,341
Falls jemand n Config Source braucht hab nochn alten von mir hier iwo released

xCPx is offline  
Old 06/28/2014, 11:56   #55
 
elite*gold: 0
Join Date: Feb 2013
Posts: 43
Received Thanks: 0
Quote:
Originally Posted by xCPx View Post
Falls jemand n Config Source braucht hab nochn alten von mir hier iwo released

Danke schön!


Weißt jemand, was die Lösung für mein Problem ist?
Andariel666 is offline  
Old 07/19/2014, 17:53   #56
 
elite*gold: 0
Join Date: Apr 2012
Posts: 57
Received Thanks: 2
not working on 40k binary . 2 starts from me only cuz i like the idea.
asteris77 is offline  
Old 07/19/2014, 18:25   #57
 
[SA]Hylight's Avatar
 
elite*gold: 0
Join Date: Oct 2011
Posts: 164
Received Thanks: 34
@asteris77

have 40k bin to and it works like a sharm!!
syserr
[SA]Hylight is offline  
Old 11/30/2016, 10:57   #58
 
elite*gold: 0
Join Date: Mar 2013
Posts: 54
Received Thanks: 6
Is it possible add sound? Like mp3 at the same time? Can any one make one tutoril

Enviado do meu SM-G900F através de Tapatalk
oceanusPT is offline  
Reply


Similar Threads Similar Threads
[release]intrologo system metin2 beta
07/15/2013 - Metin2 PServer Guides & Strategies - 48 Replies
in root intrologo.py : import app import net import ui import snd import wndMgr import uiScriptLoc - Pastebin.com edit: prototype.py : import dbg
[Release]Easy Change Client Version[Tutorial]
10/02/2012 - SRO Private Server - 14 Replies
Hello Community Just Releasing How to Change Client Version i know that it is easy to change there is 2 ways 1- IP input 2- this tool The File uploaded on 14 mirror



All times are GMT +1. The time now is 17:57.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.