Jump to content

.Relaia

Member
  • Posts

    3
  • Joined

  • Last visited

  • Feedback

    0%

About .Relaia

  • Birthday 07/25/1995

Informations

  • Gender
    Male

Social Networks

  • Skype
    realrelaia

Recent Profile Visitors

752 profile views

.Relaia's Achievements

Rookie

Rookie (2/16)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

32

Reputation

  1. Hey, I´ve got two little problems.. the first is my english isn´t really good so i cant explain my problem with the code not how i like to do it.... but hey lets try. i´ve wirtten this : for asdf in range(0,5): for i in range(0,5): vas = 5-i self.boni_new[asdf] = {} self.boni_new[asdf][vas] = {} self.boni_new[asdf][vas][0] = ui.TextLine() self.boni_new[asdf][vas][0].SetParent(self) self.boni_new[asdf][vas][0].SetText("Bonus "+str(5-asdf)) self.boni_new[asdf][vas][0].SetPosition(15,10+25*(vas-1)) self.boni_new[asdf][vas][0].Hide() self.boni_new[asdf][vas][1] = DropDown(self,"- Keiner -") self.boni_new[asdf][vas][1].SetPosition(70,10+25*(vas-1)) for x in AFFECT_DICT: if x in BONI_AVAIL: self.boni_new[asdf][vas][1].AppendItem(str(AFFECT_DICT[x](0)),x) self.boni_new[asdf][vas][1].SetSize(330,20) self.boni_new[asdf][vas][1].Hide() self.boni_new[asdf][vas][2] = ui.Bar("UI") self.boni_new[asdf][vas][2].SetParent(self) self.boni_new[asdf][vas][2].SetPosition(410,10+25*(vas-1)) self.boni_new[asdf][vas][2].SetColor(0xC0000000) self.boni_new[asdf][vas][2].SetSize(80,20) self.boni_new[asdf][vas][2].Hide() self.boni_new[asdf][vas][3] = Edit2("0",14) self.boni_new[asdf][vas][3].SetParent(self.boni_new[asdf][vas][2]) self.boni_new[asdf][vas][3].SetNumberMode() self.boni_new[asdf][vas][3].SetSize(80,20) self.boni_new[asdf][vas][3].SetPosition(4,3) self.boni_new[asdf][vas][3].Hide() and i want to get : {0: {1: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {1: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {1: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {1: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {5: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x052FC5F0>, 2: <ui.Bar object at 0x05301270>, 3: <switchbot.Edit2 object at 0x05301290>}}} {0: {2: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {2: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {2: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {2: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {4: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x05301290>, 2: <ui.Bar object at 0x05301ED0>, 3: <switchbot.Edit2 object at 0x05301EF0>}}} {0: {3: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {3: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {3: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {3: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {3: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x05301EF0>, 2: <ui.Bar object at 0x05309B50>, 3: <switchbot.Edit2 object at 0x05309B70>}}} {0: {4: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {4: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {4: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {4: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {2: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x05309B70>, 2: <ui.Bar object at 0x0530F7D0>, 3: <switchbot.Edit2 object at 0x0530F7F0>}}} {0: {5: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {5: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {5: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {5: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {1: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x0530F7F0>, 2: <ui.Bar object at 0x0547D450>, 3: <switchbot.Edit2 object at 0x0547D470>}}} but i get: {0: {1: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {1: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {1: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {1: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {5: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x052FC5F0>, 2: <ui.Bar object at 0x05301270>, 3: <switchbot.Edit2 object at 0x05301290>}}} {0: {1: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {1: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {1: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {1: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {4: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x05301290>, 2: <ui.Bar object at 0x05301ED0>, 3: <switchbot.Edit2 object at 0x05301EF0>}} {0: {1: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {1: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {1: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {1: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {3: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x05301EF0>, 2: <ui.Bar object at 0x05309B50>, 3: <switchbot.Edit2 object at 0x05309B70>}}} {0: {1: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {1: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {1: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {1: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {2: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x05309B70>, 2: <ui.Bar object at 0x0530F7D0>, 3: <switchbot.Edit2 object at 0x0530F7F0>}}} {0: {1: {0: <ui.TextLine object at 0x08EEC930>, 1: <switchbot.DropDown object at 0x08F42B70>, 2: <ui.Bar object at 0x08F467D0>, 3: <switchbot.Edit2 object at 0x08F467F0>}}, 1: {1: {0: <ui.TextLine object at 0x08F46870>, 1: <switchbot.DropDown object at 0x08F62A90>, 2: <ui.Bar object at 0x08F686F0>, 3: <switchbot.Edit2 object at 0x08F68710>}}, 2: {1: {0: <ui.TextLine object at 0x08F68790>, 1: <switchbot.DropDown object at 0x052DD9B0>, 2: <ui.Bar object at 0x052E4610>, 3: <switchbot.Edit2 object at 0x052E4630>}}, 3: {1: {0: <ui.TextLine object at 0x052EFFD0>, 1: <switchbot.DropDown object at 0x052FF8D0>, 2: <ui.Bar object at 0x052FC530>, 3: <switchbot.Edit2 object at 0x052FC550>}}, 4: {1: {0: <ui.TextLine object at 0x052FC5D0>, 1: <switchbot.DropDown object at 0x0530F7F0>, 2: <ui.Bar object at 0x0547D450>, 3: <switchbot.Edit2 object at 0x0547D470>}}} because im ill at the moment i cant concentrate me very well.... can someone please tell me where the issue is?
  2. [ENG] Hi, I have found a way to fix the backporting on mounts, and with this way the monster appear correctly! Lets start: 1. You need the folder in which the MSM / MSA / GR2 files are thy Mount's 2. go to your server in the directory /usr/home/game/share/data/monster (green part of the path may differ) 3. load the folder where your mount is in this directory 4. go into your database and open the mob_proto 5. You search your Mount and go to the column "Folder" 6. put in the folder name of your Mount's in this column 7. Restart Server I know this way for quite a while and it also works with Pet's / monsters etc .. I´m sorry for my very bad english [GER] Hi, Ich habe einen Weg gefunden das zurück Porten auf Mounts zu verhindern, und das so dass die Monster korrekt erscheinen! Ich will nicht lang drum rum reden also fangen wir an: 1. Du brauchst den Ordner in dem sich die msm/msa/gr2 Dateien deines Mount´s befinden 2. Du gehst auf deinem Server in das Verzeichnis /usr/home/game/share/data/monster (Grüner teil des Pfades kann abweichen) 3. Du lädst den Ordner in dem sich dein Mount befindet in dieses Verzeichnis hoch 4. Du gehst in deine Datenbank und öffnest die mob_proto 5. Du suchst nach deinem Mount und gehst zur spalte "folder" 6. Du trägst den Ordnernamen deines Mount´s in diese spalte ein 7. Server neustarten Ich kenne diesen weg schon recht lange und er funktioniert auch bei Pet´s/Monstern etc...
  3. Hello, I made this background some time ago, but i dont need it anymore. I dont want to delete it, because i have worked on it for a while. So i am sharing this with you, hoping that someone can use it. Download: [Hidden Content] Preview:
×
×
  • 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.