Lucrăm la îmbunătățirea site-ului! Este posibil ca unele module să nu funcționeze corect!
4 mesaje
Avatar utilizator
Administrator
  • Administrator

    Autor subiect

  • Mesaje: 2,607
  • Reacții: 29032
  • Mesaje utile: 17
  • Status: Pierd vremea ^.^
  • Server: Saga2 - Soon
  • Regat: Jinno
  • Discord: [Vezi ID]
  • Contact:
    *Descriere:

    Este sistemul de Barbut, unde poti paria pe iteme intr-o fereastra.

    Cine are numaurl mai mare castiga obiectele mizate.

    + Am adaugat un Quest pentru GM care activeaza/dezactiveaza acest sistem.

    Recomand sa il lasati doar la evenimente speciale daca nu vreti sa aveti doar jucatori pacanisti pe server :))

    *Poze / Video (obligatoriu):
    [C++/Py] System Dice - Barbut (cu optiuni activare/dezactivare) - Mesaj 1 - Imagine 1
    *Link download:
    Conținut: Ascuns
    ⚠️ NU trebuie să răspunzi la subiect! Doar lasă un "Like" la acest post și conținutul se va afișa automat.

    Si pentru quest aveti aici:
    Conținut: Ascuns
    ⚠️ NU trebuie să răspunzi la subiect! Doar lasă un "Like" la acest post și conținutul se va afișa automat.

    Cum descarc de pe TeraBox?

    • Este asemănător cu Mega.nz
    • Instalați-vă clientul lor de Download de aici
    • Faceți-vă un cont (vă puteți loga cu Facebook / Google / etc)
    • Dacă nu vreți să descărcați clientul de Download, folosiți acest site
    • Gata! Acum puteți descărca resursele

    De ce folosim TeraBox?

    • Este gratuit
    • Primești 1TB de spațiu gratuit la orice cont creat!
    • Este ușor de folosit și varianta premium este foarte ieftină
    • Fișierele nu sunt șterse niciodată
    TeraBox logo
    Te asteptam si pe serverul de Discord :p - aici ne-am strans toata comunitatea de Metin2 din Romania.
    Link: https://discord.gg/Kr9nUpWa4X

    Suntem aproape 1000 membri! - Avem chat activ zilnic, support, cereri, resurse.



    See full signature
    Tag-uri:

    📢 Resurse Metin2 Premium!

    Zeci de resurse Metin2 Premium - exclusive și 100% funcționale începând cu 15.99€!.

    Vezi resursele Cumpără premium
    Premium
    Premium
    Anunț
  • Mesaje: 46
  • Reacții: 44
  • Mesaje utile: 2
  • Status: Pierd vremea ^.^
  • Regat: Jinno
  • Contact:

    Medalii

    Las si eu o ferestra new de dice cu 24 slot :

    Code:
    import uiScriptLocale
    import localeInfo
    
    ROOT = "d:/ymir work/ui/game/"
    
    WIDTH = 282 + 180
    HEIGHT = 167 + 70
    
    window = {
    
    	"name" : "DiceSystem",
    	"style" : ("movable", "float",),
    
    	"x" : 0,
    	"y" : 30,
    
    	"width" : WIDTH,
    	"height" : HEIGHT,
    
    	"children" :
    	(
    		{
    			"name" : "board",
    			"type" : "board", 
    			"style" : ("attach",),
    			
    			"x" : 0,
    			"y" : 0,
    			
    			"width": WIDTH,
    			"height": HEIGHT,
    			
    			"children" :
    			(
    				{
    					"name" : "TitleBar",
    					"type" : "titlebar",
    					"style" : ("attach",),
    					
    					"x" : 6,
    					"y" : 8,
    					
    					"width" : WIDTH - 14,
    					"color" : "yellow",
    					
    					"children" :
    					(
    						{ "name" : "TitleName", "type" : "text", "x" : 0, "y" : 3, "text" : str(localeInfo.DICE_SYSTEM_TITLE), "text_horizontal_align" : "center", "horizontal_align" : "center" },
    					),
    				},
    			
    				## Owner (You)
    				{ 
    					"name" : "Owner",
    					"type" : "window",
    					
    					"x" : 144 + 116,
    					"y" : 33,
    					
    					"width" : 200,
    					"height" : 150,
    					
    					"children" :
    					(
    						{
    							"name" : "Owner_Slot",
    							"type" : "grid_table",
    
    							"start_index" : 0,
    
    							"x" : 0,
    							"y" : 0,
    
    							"x_count" : 6,
    							"y_count" : 4,
    							"x_step" : 32,
    							"y_step" : 32,
    							"x_blank" : 0,
    							"y_blank" : 0,
    
    							"image" : "d:/ymir work/ui/public/slot_base.sub",
    						},
    						
    						{
    							"name": "Owner_Number_ThinBoard",
    							"type": "thinboard",
    							
    							"x" : 0,
    							"y" : 134,
    							
    							"width" : 192,
    							"height" : 60,
    							
    							"children": 
    							(
    								{ "name" : "Owner_Number_Text", "type" : "text", "text" : "", "x" : 0, "y" : 0, "text_horizontal_align" : "center", "text_vertical_align" : "center", "vertical_align" : "center", "horizontal_align" : "center"},
    							),
    						},
    					),
    				},
    				
    				## Target (Enemy)
    				{
    					"name" : "Target",
    					"type" : "window",
    					
    					"x" : 10,
    					"y" : 33,
    					
    					"width" : 200,
    					"height" : 150,
    					
    					"children" :
    					(
    						{
    							"name" : "Target_Slot",
    							"type" : "grid_table",
    					
    							"start_index" : 0,
    					
    							"x" : 0,
    							"y" : 0,
    					
    							"x_count" : 6,
    							"y_count" : 4,
    							
    							"x_step" : 32,
    							"y_step" : 32,
    							
    							"x_blank" : 0,
    							"y_blank" : 0,
    					
    							"image" : "d:/ymir work/ui/public/slot_base.sub",
    						},
    						
    						{
    							"name": "Target_Number_ThinBoard",
    							"type": "thinboard",
    							
    							"x" : 0,
    							"y" : 134,
    							
    							"width" : 192,
    							"height" : 60,
    							
    							"children": 
    							(
    								{ "name" : "Target_Number_Text", "type" : "text", "text" : "", "x" : 0, "y" : 0, "text_horizontal_align" : "center", "text_vertical_align" : "center", "vertical_align" : "center", "horizontal_align" : "center"},
    							),
    						},
    					),
    				},
    
    				{
    					"name" : "Owner_Accept_Light",
    					"type" : "button",
    
    					"x" : 0,
    					"y" : 93,
    
    					"horizontal_align" : "center",
    
    					"default_image" : "d:/ymir work/ui/game/exchange/own_arrow_01.tga",
    					"over_image" : "d:/ymir work/ui/game/exchange/own_arrow_01.tga",
    					"down_image" : "d:/ymir work/ui/game/exchange/own_arrow_03.tga",
    				},
    				
    				{
    					"name" : "Target_Accept_Light",
    					"type" : "button",
    
    					"x" : 0,
    					"y" : 93 + 18,
    
    					"horizontal_align" : "center",
    
    					"default_image" : "d:/ymir work/ui/game/exchange/target_arrow_01.tga",
    					"over_image" : "d:/ymir work/ui/game/exchange/target_arrow_01.tga",
    					"down_image" : "d:/ymir work/ui/game/exchange/target_arrow_03.tga",
    				},
    				
    				{
    					"name" : "Owner_Accept_Button",
    					"type" : "toggle_button",
    
    					"x" : 0,
    					"y" : 101 + 32,
    
    					"horizontal_align" : "center",
    
    					"text" : uiScriptLocale.EXCHANGE_ACCEPT,
    					
    					"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
    					"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
    					"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
    				},
    			),
    		},
    	),
    }
    
    


    [C++/Py] System Dice - Barbut (cu optiuni activare/dezactivare) - Mesaj 2 - Imagine 1

    Resurse :


  • Mesaje: 3
  • Reacții: 0
  • Mesaje utile: 0
  • Status: Pierd vremea ^.^
  • Regat: Jinno
  • Contact:

    Medalii

    [C++/Py] System Dice - Barbut (cu optiuni activare/dezactivare) - Mesaj 3 - Imagine 1Am implementat tot systemul,fara probleme pe partea de sursa,cand activez systemul de barbut si apas pe butoul de "Dice" imi arata erroarea mentionata mai jos
  • Mesaje: 2
  • Reacții: 0
  • Mesaje utile: 0
  • Status: Pierd vremea ^.^
  • Regat: Chunjo
  • Medalii

    problema e din interfacemodule

    📢 Resurse Metin2 Premium!

    Zeci de resurse Metin2 Premium - exclusive și 100% funcționale începând cu 15.99€!.

    Vezi resursele Cumpără premium
    Premium
    Premium
    Anunț
    Scrie răspuns

    Creează-ți un cont sau autentifică-te pentru a participa la discuție

    Trebuie să fii membru pentru a răspunde

    Creează-ți un cont

    Înregistrează-te și alătură-te comunității noastre

    Membrii pot crea subiecte noi și pot descărca resurse Metin2 Gratuit!


    Te poți înregistra rapid utilizând contul tău de Discord sau Github

    Înregistrare

    Autentifică-te

    Înapoi la “Sisteme Metin2”

    Informații

    Utilizatori ce navighează pe acest forum: blackorck1997, q963123, Rofedexx, YTmaster și 5 vizitatori