Jump to content

.InyaProduction

Former Staff
  • Posts

    511
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    0%

Posts posted by .InyaProduction

  1. You aren't allowed to post source functions since they were made by ymir..

    huh? Did i miss a rule in my own board? :D no there is no restriction on the source. You can post parts of it if you want :D

    • Love 1
  2. And if i need put a syschat to show the dates?

     

     

    sychat("itemsalchemie[0][ran][1].." "..itemsalchemie[0][ran][2].." "..itemsalchemie[0][ran][3].." "..itemsalcheme[0][ran][4]) <--- this is ok?

     

     

    sorry my bad english.

    itemsalchemie[0][ran][1]

    will return the amount you specified at the top of a random item from table one.. the other give empty table error. if you want to return the whole table:

     

    local output = ""
    for i = 0, table.getn(itemsalchemie[0]), 1 do
    output = output..itemsalchemie[0][i].." "
    end
    
    syschat(output)
    • Love 1
  3. quest regenbogen begin
    	state start begin
    		when 50512.use begin
    			local sk = special.active_skill_list[pc.get_job()+1][pc.get_skill_group()]
    			for i = 1, table.getn(sk) do
    				if pc.get_skill_level(sk[i]) < 40 then
    					pc.set_skill_level(sk[i], 40)
    					item.remove()
    					syschat("Your skills are now perfect.")
    				end
    			end
    		end
    	end
    end
    

     

    Dont put the item.remove into the for loop

    put it after the for loop

     

  4. Hey guys,

    as you know Vanilla has her excellent project "Vanilla Core". But for me there's one thing missing. A core for Windows. You can test much better (e.g. you see what the Core is doing and you see all the errors). You don't have to use Filezilla or WinScp for Quests and so on.

    So as I'm bored some times i wanted to ask you if you would need Windows standard files?

    Would you want it to have extensions like 6 inventorys optional?

    And don't expect that core to be as good as the Vanilla one. I think she has much more knowledge than me :D

    Greets Inya

    • Love 1
  5. FreeBSD 8.2 is a way too obsolete. Please consider upgrading it.

    @.InyaProduction:

    I'll check it. YMIR didn't apply it for nothing, so I'll try to work on it in a reasonable way.

    I know its for checking speedhack but this values are way to low

     

    Found another "bug". When youre Polymorphed and try to change sex, that wont work

    	int src_race = GetRaceNum();
    
    	switch (src_race)

    GetRaceNum(); will return the polymorphed vnum. So consider using

     

    	int src_race = m_points.job;
    
    	switch (src_race)

    This will return the real Job

     

    Function:

    bool CHARACTER::ChangeSex()

  6. I tried to compile the bin with vs2013 now. Got this errors:

    Fehler    9    error LNK2019: unresolved external symbol "int __cdecl Ymir_WideCharToMultiByte(unsigned int,unsigned long,wchar_t const *,int,char *,int,char const *,int *)" (?Ymir_WideCharToMultiByte@@YAHIKPB_WHPADHPBDPAH@Z) referenced in function "public: static int __cdecl CGraphicTextInstance::Hyperlink_GetText(char *,int)" (?Hyperlink_GetText@CGraphicTextInstance@@SAHPADH@Z)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    10    error MSB6006: "link.exe" wurde mit dem Code 1120 beendet.    C:Program Files (x86)MSBuildMicrosoft.Cppv4.0PlatformsWin32Microsoft.Cpp.Win32.targets    268
    Fehler    11    error LNK2019: unresolved external symbol "wchar_t __cdecl Arabic_ConvSymbol(wchar_t)" (?Arabic_ConvSymbol@@YA_W_W@Z) referenced in function "public: void __thiscall CGraphicTextInstance::Update(void)" (?Update@CGraphicTextInstance@@QAEXXZ)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    12    error LNK2019: unresolved external symbol "bool __cdecl Arabic_IsInPresentation(wchar_t)" (?Arabic_IsInPresentation@@YA_N_W@Z) referenced in function "public: void __thiscall CGraphicTextInstance::Update(void)" (?Update@CGraphicTextInstance@@QAEXXZ)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    13    error LNK2019: unresolved external symbol "bool __cdecl Arabic_HasPresentation(wchar_t *,int)" (?Arabic_HasPresentation@@YA_NPA_WH@Z) referenced in function "public: void __thiscall CGraphicTextInstance::Update(void)" (?Update@CGraphicTextInstance@@QAEXXZ)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    14    error LNK2019: unresolved external symbol "bool __cdecl Arabic_IsInSymbol(wchar_t)" (?Arabic_IsInSymbol@@YA_N_W@Z) referenced in function "public: void __thiscall CGraphicTextInstance::Update(void)" (?Update@CGraphicTextInstance@@QAEXXZ)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    15    error LNK2019: unresolved external symbol "unsigned int __cdecl Arabic_MakeShape(wchar_t *,unsigned int,wchar_t *,unsigned int)" (?Arabic_MakeShape@@YAIPA_WI0I@Z) referenced in function "public: void __thiscall CGraphicTextInstance::Update(void)" (?Update@CGraphicTextInstance@@QAEXXZ)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    16    error LNK2019: unresolved external symbol "int __cdecl Ymir_MultiByteToWideChar(unsigned int,unsigned long,char const *,int,wchar_t *,int)" (?Ymir_MultiByteToWideChar@@YAHIKPBDHPA_WH@Z) referenced in function "public: void __thiscall CGraphicTextInstance::Update(void)" (?Update@CGraphicTextInstance@@QAEXXZ)    C:UsersInyaProductionDesktopTakuya2SourceClientUserInterfaceeterlib.lib(GrpTextInstance.obj)
    Fehler    17    error LNK1120: 7 unresolved externals    C:UsersInyaProductionDesktopTakuya2SourceClientbinmetin2client.exe
     

     

    or in a picture https://metin2.download/picture/r3F9504x09DVmF8K988YXgTtGTP6KMUj/.gif

     

×
×
  • 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.