[sbox]Bitte melden Sie sich an, um dieses Medienelement zu sehen.[/sbox]
Beiträge von Dex
-
-
dumm?
dass man die VNUM sourceside anpassen soll ist doch klar, oder sollte es mindestens gewesen sein
-
Hey m2dl,
i´m trying to add a new upp-item that increases the chance of Succes(like the scroll of the dragon) I cant find the File where its defined tho.You guys have any idea how to do that?
kind regards
Just create an icon and give your item the types/ subtypes of dragon scroll.
-
how can i do this because i tried everything with no result ;p
Right click on Userinterface and select Add Item> Existing Item and choose the path to PythonBank.cpp/.h ( both musst be also in your Directory of the binary source )
-
Hallo Community,
wie es der Titel bereits sagt, suche ich jemanden der mir behilflich sein kann den Offline-Shop von Great mit auf Won umzurüsten
Schreib mir privat, sobald ich am PC bin melde ich mich dann
-
-
2€
2,10€
-
Kein Schimmer, alles andere funktioniert.
Schau im Datenbank nach conf.txt NO_TXT 1 wenn so eingetragen ist liest es sql wenn da 0 steht liest es txt. Das ist aber nicht die Standard quest von fliege oder ?
-
-
The function was declared earlier in the quest itself, it should be usable..
it doesn't matter, you need to declare it in the quest_function without this, you are not able to use this function in your quest
-
geh auf epvp und schreib pls das gleiche unter aeldra vorstellung bzgl. tirez
thxWas ein schwachsinn xD Aeldra ist der letze schrott xD die haben Bugs bis es nicht mehr geht, global war ein Meisterwerk dagegen ... wie kommt ihr denn auf Shiro? na gut hab den server nie gezockt aber das hier scheint nett zu sein, nun bleibt mal zu sehen wie lange es on bleibt. Ich frage mich woher ihr das Skill System habt, aus dem Alpha Clienten hmmm
-
I did and know i get an error saying : Bitte melden Sie sich an, um diesen Link zu sehen.
you need to add the new function into your quest_function /locale/../quest but also you need to have the function in your source.
-
TxT
Bitte melden Sie sich an, um diesen Link zu sehen.
-
ich habe mal ne frage habe das gilden lager eingebaut bekomme diesen fehler wer kann mir da weiter helfen
SYSERR: May 20 17:13:23.303791 :: RunState: LUA_ERROR: [string "guildstorage"]:14: attempt to call field `select_cell' (a nil value)
SYSERR: May 20 17:13:23.303879 :: WriteRunningStateToSyserr: LUA_ERROR: quest guildstorage.start clickkann keine items einlagern
dir fehlt eine Funktion im Source, welche Files nutzt du und SQL oder TXT?
-
Habe es endlich raus gefunden!
Close pl
Bitte melden Sie sich an, um dieses Bild zu sehen.
-
Hey,
vielleicht kann mir einer hier helfen..
Möchte in meine Files, wo bereits das Waffenkostüm verbaut ist, das Schulterband System noch einfügen.
Doch in der Binary in der GameType,h komme ich leider nicht weiter.Hier ist meine GameType.h (clean)
Bitte melden Sie sich an, um diesen Link zu sehen.und da müsste jetzt nur dieser Part von Schulterband hinzugefügt werden:
C- // 1) Search:
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21;
- // 2) Replace with:
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21 + 1;
- #else
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21;
- #endif
- // 1) Search:
- const DWORD c_Costume_Slot_Hair = c_Costume_Slot_Start + 1;
- // 2) After this make a new line and paste:
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_Costume_Slot_Sash = c_Costume_Slot_Start + 2;
- #endif
- // 1) Search:
- const DWORD c_Costume_Slot_Count = 2;
- // 2) Replace with:
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_Costume_Slot_Count = 3;
- #else
- const DWORD c_Costume_Slot_Count = 2;
- #endif
Vielen dank für eure Hilfe
1)
C- #ifdef ENABLE_NEW_EQUIPMENT_SYSTEM
- #ifdef ENABLE_COSTUME_WEAPON
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 23;
- #else
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 22;
- #endif
- const DWORD c_New_Equipment_Count = 3;
- const DWORD c_Equipment_Ring1 = c_New_Equipment_Start + 0;
- const DWORD c_Equipment_Ring2 = c_New_Equipment_Start + 1;
- const DWORD c_Equipment_Belt = c_New_Equipment_Start + 2;;
- #endif
2) && 3)
Code- #ifdef ENABLE_COSTUME_SYSTEM
- const DWORD c_Costume_Slot_Start = c_Equipment_Start + 19; // [ÁÖÀÇ] ¼ýÀÚ(19) ÇϵåÄÚµù ÁÖÀÇ. ÇöÀç ¼¹ö¿¡¼ ÄÚ½ºÃõ ½½·ÔÀº 19ºÎÅÍÀÓ. ¼¹ö common/length.h ÆÄÀÏÀÇ EWearPositions ¿°ÅÇü Âü°í.
- const DWORD c_Costume_Slot_Body = c_Costume_Slot_Start + 0;
- const DWORD c_Costume_Slot_Hair = c_Costume_Slot_Start + 1;
- #ifdef ENABLE_COSTUME_WEAPON
- const DWORD c_Costume_Slot_Weapon = c_Costume_Slot_Start + 2;
- const DWORD c_Costume_Slot_Sash = c_Costume_Slot_Start + 3;
- const DWORD c_Costume_Slot_Count = 4;
- #else
- const DWORD c_Costume_Slot_Count = 3;
- #endif
- const DWORD c_Costume_Slot_End = c_Costume_Slot_Start + c_Costume_Slot_Count;
- #endif
costumewindow.py:
Python- import uiScriptLocale
- import item
- COSTUME_START_INDEX = item.COSTUME_SLOT_START
- window = {
- "name" : "CostumeWindow",
- "x" : SCREEN_WIDTH - 175 - 140,
- "y" : SCREEN_HEIGHT - 37 - 565,
- "style" : ("movable", "float",),
- "width" : 140,
- "height" : 180 + 47,
- "children" :
- (
- {
- "name" : "board",
- "type" : "board",
- "style" : ("attach",),
- "x" : 0,
- "y" : 0,
- "width" : 140,
- "height" : 180 + 47,
- "children" :
- (
- ## Title
- {
- "name" : "TitleBar",
- "type" : "titlebar",
- "style" : ("attach",),
- "x" : 6,
- "y" : 6,
- "width" : 130,
- "color" : "yellow",
- "children" :
- (
- { "name":"TitleName", "type":"text", "x":60, "y":3, "text":uiScriptLocale.COSTUME_WINDOW_TITLE, "text_horizontal_align":"center" },
- ),
- },
- ## Equipment Slot
- {
- "name" : "Costume_Base",
- "type" : "image",
- "x" : 13,
- "y" : 38,
- "image" : uiScriptLocale.LOCALE_UISCRIPT_PATH + "costume/costume_bg.jpg",
- "children" :
- (
- {
- "name" : "CostumeSlot",
- "type" : "slot",
- "x" : 3,
- "y" : 3,
- "width" : 127,
- "height" : 227,
- "slot" : (
- {"index":COSTUME_START_INDEX+0, "x":61, "y":45, "width":32, "height":64},
- {"index":COSTUME_START_INDEX+1, "x":61, "y": 8, "width":32, "height":32},
- {"index":COSTUME_START_INDEX+2, "x":61, "y":125, "width":32, "height":32},
- {"index":COSTUME_START_INDEX+3, "x":13, "y":15, "width":32, "height":96},
- ),
- },
- ),
- },
- ),
- },
- ),
- }
costume_bg in locale_de>locale>de>ui>costume einfuegen
-
Hast du Skype? Wenn ja Sende es mir doch bitte
Seit wann bist du denn TEC? hahaha
wie viel zahlst du ? wie viel ist nich zu machen was steht alles an ?
Wurde mich auch interessieren
-
-
na dann zeig mal her
würde mich auch interessieren
-
Muss ich Bitte melden Sie sich an, um diesen Link zu sehen. Recht geben, auch wenn ich absolut nicht im Bilde über Fliege-Files bin.
Es wirkt nicht all zu dringlich, dass hier der Server nichtmehr läuft, was mich daraus schließen lässt, dass der Server nichtmal online ist.
Wer sollte sich dann mit einer Injection die Mühe machen einen Bastelserver zu ruinieren bzw. auf den Server kommen dafür.Ich tippe wirklich darauf, dass es einfach an leichten Zugangsdaten für den MySQL lag.
Muss dir Recht geben Bitte melden Sie sich an, um diesen Link zu sehen., habe es selbst getestet mit den Files, das Passwort ist 123, vermutlich einen Bot dass typisch gesetzte Passwoerter ueberprueft.