Jump to content
Araştır
  • Diğer seçenekler ...
Sonuçları bul ...
Sonuçları bul ...

Genel Araştırma

'hatası' etiketi için arama sonuçları.

  • Etiketlere Göre Ara

    Aralarına virgül koyarak ekleyin
  • Yazara Göre Ara

İçerik Türü


Forum

  • PvP Serverlar
    • Server Tanıtımı
    • Server Kurulumu
    • Server Muhabbeti
  • Forum Genel
    • Forum Kuralları
    • Duyurular
    • Şikayet ve Öneriler
    • Geliştirici Paylaşımları
    • English Forum
  • Satış
    • Alım & Satım
  • Mini KO Forum (Yardım & İstek)
    • Genel Yardım
    • Genel İstek
  • KO Development
    • Geliştirme (Yeni)
    • Paketler
    • Özel Paylaşımlar
    • Projeler
    • Knight Online Kaynak Kod Paylaşımı
  • Knight OnLine Paylaşım Forum
    • Genel Paylaşımlar
    • Client Paylaşımları
    • Database Paylaşımları
    • Server Dosyası Paylaşımları
    • Prosedür & Query Kod Paylaşımları
    • Web Dosyası Paylaşımları
    • Yardımcı Program Paylaşımları
    • Gerekli Bilgi Paylaşımları
  • Hile paylaşımları
  • Programlama
  • Online Oyunlar
  • Ticaret
  • Webmaster
  • KO Developers Gazinosu
  • Kişisel
  • Diğer

Sonuçları bul ...

Sonuçları bul ...


Oluşturma Tarihi

  • Start

    End


Son Güncelleme

  • Start

    End


Filter by number of...

Katılım

  • Start

    End


Üye Grubu


Hakkımda

Araştırmada 90 sonuç bulundu

  1. sa arkadşalar Microsoft Visual C++ 6.0 Standard Edition yüklerken bu hatayı alıyor w10 pro işletim sistemini kullanıyorum nasıl düzeltmem gerekli bilen varsa yardımcı olurmusunuz windows NT debug symbols hatası
  2. Arkadaşlar Merhaba, KO-Panelin bulunduğu IP'den siteye bağlandığımda aşağıdaki hatayı veriyor.
  3. Merhabalar, Procudure kodunu çalıştırdığım zamana aşağıdaki hatayı veriyor. Yardımcı olabilirmisiniz? Teşekkürler, Hata ----------------------------------- Msg 402, Level 16, State 1, Procedure INSERTITEM, Line 80 [Batch Start Line 864] The data types varbinary and varchar are incompatible in the add operator. 80.Satır ----------------------------------- update warehouse set warehousedata = cast( substring(warehousedata, 1, @i-1) + cast(cast(@CNum as varchar(4)) + @Cdur + @Cstack as varchar(8)) + substring(warehousedata, @i+8, 1601-@i) as binary(1600)) where straccountid = @strUserID ----------------------------------- if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[INSERTITEM]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[INSERTITEM] GO SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE PROCEDURE INSERTITEM @StrUserID varchar(30), @NEWNum int, @StackSize int AS DECLARE @length int, @row int, @i int, @Num int, @pos int, @dur int, @dur1 int, @ext int, @StackSize1 int, @strName varchar(30), @strExtName varchar(30), @CNum varbinary(4), @cdur varchar(2), @cstack varchar(2), @stritemname varchar(21), @itemexist int BEGIN TRAN select @itemexist = count(*) from item where num = @newnum if (@itemexist begin select @StrUserID, 0, 0, 0, 'Invalid Item ID', 'Item Doesnt Exist' ROLLBACK TRAN RETURN end If (@StackSize > 9999) or (@StackSize begin select @StrUserID, 0, 0, 0, 'Invalid StackSize', 'Stack size 1 > 9999' ROLLBACK TRAN RETURN end Begin set @i = 1 set @length=1601 Select @row = count(*) From warehouse Where straccountid like @StrUserID If @row = 0 or @row > 1 Begin Select @StrUserID, 0, 0, 0, 'Invalid ID', 'Please check the name against the datasource' ROLLBACK TRAN RETURN End Select @row = count(*) From warehouse Where (straccountid like @StrUserID) and (warehousedata is NULL) If @row > 0 Begin Select @StrUserID, 0, 0, 0, 'No Data', 'StrItem is NULL' ROLLBACK TRAN RETURN End End select @stritemname = strname from item where num = @newnum WHILE @i Begin Select @Num=cast(cast(substring(cast(substring(warehousedata, @i,4) as varbinary(4)), 4, 1)+substring(cast(substring(warehousedata, @i,4) as varbinary(4)), 3, 1)+substring(cast(substring(warehousedata, @i,4) as varbinary(4)), 2, 1)+substring(cast(substring(warehousedata, @i,4) as varbinary(4)), 1, 1) as varbinary(4)) as int), @dur = cast(cast(cast( substring(warehousedata, @i+5, 1) as varbinary(1))+cast(substring(warehousedata, @i+4, 1) as varbinary(1)) as varbinary(2)) as smallint), @StackSize1 = cast(cast(cast( substring(warehousedata, @i+7, 1) as varbinary(1))+cast(substring(warehousedata, @i+6, 1) as varbinary(1)) as varbinary(2)) as smallint) From warehouse Where straccountid = @StrUserID If @Num = 0 begin If @dur = 0 Begin If @StackSize1 = 0 Begin select @dur = Duration from ITEM where Num = @NEWNum If @StackSize > 1 Set @dur = 1 Set @CNum = Substring(cast(@NEWNum as varbinary(4)), 4, 1) + Substring(cast(@NEWNum as varbinary(4)), 3, 1) + Substring(cast(@NEWNum as varbinary(4)), 2, 1) + Substring(cast(@NEWNum as varbinary(4)), 1, 1) Set @Cdur = cast(Substring(cast(@dur as varbinary(2)), 2, 1)+Substring(cast(@dur as varbinary(2)), 1, 1) as varchar(2)) Set @Cstack = cast(Substring(cast(@StackSize as varbinary(2)), 2, 1)+Substring(cast(@StackSize as varbinary(2)), 1, 1) as varchar(2)) Begin --select cast(warehousedata as varbinary(1600)) from warehouse where strAccountID = @strUserID --select cast( substring(WareHouseData, 1, @i-1) + cast(cast(@CNum as varchar(4)) + @Cdur + @Cstack as varchar(8)) + substring(WareHouseData, @i+8, 1601-@i) as binary(1600)) from warehouse where strAccountID = @strUserID update warehouse set warehousedata = cast( substring(warehousedata, 1, @i-1) + cast(cast(@CNum as varchar(4)) + @Cdur + @Cstack as varchar(8)) + substring(warehousedata, @i+8, 1601-@i) as binary(1600)) where straccountid = @strUserID COMMIT TRAN --insert into abuse_check1 values (@StrUserID ,@stritemname, @NEWNum,@stacksize,getdate()) RETURN End End End End set @i = @i + 8 End GO SET QUOTED_IDENTIFIER OFF GO SET ANSI_NULLS ON GO
  4. SELAM ARKADAŞLAR SOURCE BUILD YAPARKEN BU HATAYI ALIYORUM NE YAPMAM GEREKLİ NE YAPMAM GEREKLİ 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.Platform.targets(44,5): error MSB8020: The builds tools for v140 (Platform Toolset = 'v140') cannot be found. To build using the v140 build tools, either click the Project menu or right-click the solution, and then select "Update VC++ Projects...". Install v140 to build using the v140 build tools.
  5. buildlerken bu hatayı alıyorum şimdiden teşekkürler @ OzkanOzdemir
  6. işlem yaparken yerel windows hata ayıklıyıcısı ile baslatıyorum https://hizliresim.com/8N1lyk https://hizliresim.com/rJ9gb1 https://hizliresim.com/GyzvOV şimdiden teşekkür ederim
  7. Arkadaşlar mrb. Yeni char açarken unknown error hatası alıyorm. create new char procunu çok kez değiştirdim sadeceleştirdim hata yine düzelmedi. Fileslerin kendi db si eski olduğu için başka db kullanmak istiyordum. Kullanmak istediğim db de eksik tablolar vardı onları ekledim fakat yeni kullanmak istediğim db de böyle bi hata almaya başladım. şimdiden cvplarınız için teşekkür ediyorm.
  8. Yeni karakter açmaya çalışırken gelen hata [ ODBC Error - 30.9.2017 3:24:46 ] ] Source: {? = CALL CREATE_NEW_CHAR(?, 0, ?, 13, 202, 64020410, 4, 60, 70, 70, 50, 50)} Error: [Microsoft][SQL Server Native Client 11.0][SQL Server]String or binary data would be truncated. Description: Failed to execute statement. Create_New_char prosedürü /* ==Scripting Parameters== Source Server Version : SQL Server 2016 (13.0.4001) Source Database Engine Edition : Microsoft SQL Server Enterprise Edition Source Database Engine Type : Standalone SQL Server Target Server Version : SQL Server 2017 Target Database Engine Edition : Microsoft SQL Server Standard Edition Target Database Engine Type : Standalone SQL Server */ USE [kn_online] GO /****** Object: StoredProcedure [dbo].[CREATE_NEW_CHAR] Script Date: 30.9.2017 03:26:27 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[CREATE_NEW_CHAR] @strAccountID varchar(21), @index tinyint, @strCharID varchar(21), @bRace tinyint, @sClass smallint, @nHair int, @bFace tinyint, @bStr tinyint, @bSta tinyint, @bDex tinyint, @bIntel tinyint, @bCha tinyint AS DECLARE @bNation tinyint DECLARE @bCharCount tinyint DECLARE @bCount tinyint SELECT @bNation = bNation, @bCharCount = bCharNum FROM ACCOUNT_CHAR WHERE strAccountID = @strAccountID IF (@bNation = 1 AND @bRace > 10) RETURN 2 ELSE IF (@bNation = 2 AND @bRace RETURN 2 ELSE IF (@bNation 1 AND @bNation 2) RETURN 2 SELECT @bCount = COUNT(strUserID) FROM USERDATA WHERE strUserID = @strCharID IF (@bCount > 0) RETURN 3 BEGIN TRAN IF (@index = 0) UPDATE ACCOUNT_CHAR SET strCharID1 = @strCharID, bCharNum += 1 WHERE strAccountID = @strAccountID ELSE IF (@index = 1) UPDATE ACCOUNT_CHAR SET strCharID2 = @strCharID, bCharNum += 1 WHERE strAccountID = @strAccountID ELSE IF (@index = 2) UPDATE ACCOUNT_CHAR SET strCharID3 = @strCharID, bCharNum += 1 WHERE strAccountID = @strAccountID ELSE IF (@index = 3) UPDATE ACCOUNT_CHAR SET strCharID4 = @strCharID, bCharNum += 1 WHERE strAccountID = @strAccountID IF (@@ERROR 0 OR @@ROWCOUNT = 0) BEGIN ROLLBACK TRAN RETURN 4 END INSERT INTO USERDATA (strUserID, Nation, Race, Class, HairRGB, Face, Strong, Sta, Dex, Intel, Cha) VALUES (@strCharID, @bNation, @bRace, @sClass, @nHair, @bFace, @bStr, @bSta, @bDex, @bIntel, @bCha) update USERDATA SET zone=21 where zone = 21 DECLARE @bFree tinyint SET @bFree = 0 EXEC ITEM_VER @StrCharID IF (@@ERROR 0) BEGIN ROLLBACK TRAN RETURN 4 END COMMIT TRAN RETURN 0 item_ver prosedürü /* ==Scripting Parameters== Source Server Version : SQL Server 2016 (13.0.4001) Source Database Engine Edition : Microsoft SQL Server Enterprise Edition Source Database Engine Type : Standalone SQL Server Target Server Version : SQL Server 2017 Target Database Engine Edition : Microsoft SQL Server Standard Edition Target Database Engine Type : Standalone SQL Server */ USE [kn_online] GO /****** Object: StoredProcedure [dbo].[ITEM_VER] Script Date: 30.9.2017 03:27:20 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[ITEM_VER] @strUserId varchar(21) AS BEGIN DECLARE @Class smallint DECLARE @MASTER smallint SELECT @Class = Cast(SubString(Cast(Class as varchar(3)), 2, 2) as smallint) FROM USERDATA WHERE strUserId = @strUserId IF @Class = 1 OR @Class = 5 OR @Class = 6 SET @Class = 1 IF @Class = 2 OR @Class = 7 OR @Class = 8 SET @Class = 2 IF @Class = 3 OR @Class = 9 OR @Class = 10 SET @Class = 3 IF @Class =4 OR @Class = 11 OR @Class = 12 SET @Class = 4 UPDATE USERDATA SET strItem = (SELECT strItem FROM BEGINNER_ITEM WHERE iClass = @Class), Gold = (SELECT Gold FROM BEGINNER_ITEM WHERE iClass = @Class) WHERE strUserId = @strUserId END son olarak beginner_item tablosu hata nerden kaynaklı acaba
  9. Sa arkadaşlar sexy ko src de Login serveri açınca su şekilde bi hata alıyorum bi türlü çözemedim yarcımcı olacak varmı acaba ?
  10. Durduk yere dll inject hatası atıyor oyunu açar açmaz. Ver 1397 de. Çözümünü bilen var mı acaba?
  11. cawa16

    SOACS 10060 hatası

    merhaba arkadaşlar vnmare ye server kurdum 2 3 tane soacs denendi inilerde sıkıntı yok odbc lere bakıldı client degiştim gene 10060 hatası alıyorum sizce ne yapmalıyım yoksa verem olucam.
  12. visual studio sürümü 2015 hata aşşağıda @ OzkanOzdemir sizide çok rahatsız ediyorum kusura bakmayın
  13. oyuna giriş ekranında id şifre yazınca "no such registered id" hatası alıyorum çözümü nedir acaba bilen var mı? şimdiden teşekkürler
  14. Bugün oyuna birden fazla char sokayım dedim uzun zamandan beridir, bazen ara ara bazense sık sık server adına tıkladığımda This server is closed hatası verdi ve giremedim oyuna. Sizce neden verebilir bu hatayı? Teşekkürler.
  15. Arkadaşlar SexyKO Server Files Buid Lerken Bu Hata Neden Veriyor
×
×
  • Yeni Oluştur...