Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tanky]Guides/TUTs-Codes-Files and more!

Junior Spellweaver
Joined
Jan 24, 2007
Messages
162
Reaction score
0
Every thing you need is right here ^_^

@@@@@@@@@@@ MELIKEME @@@@@@@@@@@
[All Files You Need] Tanky Online Rev1 (Contains every SQL and Server Files)

File Beam :

Ma Site :

@@@@@@@@@@@ MELIKEME @@@@@@@@@@@
----------------------
DOWNLOADS
----------------------

English Client




Server Files




SQL Server 2000



SQL Server 2000 Sp3



----------------------
Releases
----------------------

Tanky Server Files Translation. *MUST DOWNLOAD!*

RageZone Thread


[REL] Simple Register Page

RageZone Thread

Another Simple Reg Page

RageZone Thread


[RELEASE] Tanky Wallpapers [RIP]

[http://forum.ragezone.com/f392/release-tanky-wallpapers-rip-304095/]RageZone Thread[/url]


----------------------
SQL Codes
----------------------

ItemList For Shop Fast Code :
Code:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ItemList]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ItemList]
GO
 
CREATE TABLE [dbo].[ItemList] (
    [ItemID] [int] IDENTITY (1, 1) NOT NULL ,
    [ItemName] [char] (50) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [ItemBuyPrice] [int] NOT NULL 
) ON [PRIMARY]
GO
 
ALTER TABLE [dbo].[ItemList] ADD 
    CONSTRAINT [PK_ItemList] PRIMARY KEY  CLUSTERED 
    (
        [ItemID]
    )  ON [PRIMARY] 
GO
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Calliope', 1000)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Mine roller', 300)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Smoke shell', 150)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Engine smoke', 500)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Turbo', 250)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Shell addition', 100)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Air bombing', 500)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Artillery support', 750)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Guided Missile', 1500)
 
INSERT INTO ItemList
                      (ItemName, ItemBuyPrice)
VALUES     ('Mini tochka', 3000)
 

Attachments

You must be registered for see attachments list
Last edited:
Custom Title Activated
Loyal Member
Joined
Jun 9, 2006
Messages
8,545
Reaction score
108
It's not like they are lost somewhere. The section is still in its first page of threads.
Anyways, Good work!
 
Junior Spellweaver
Joined
Jan 24, 2007
Messages
162
Reaction score
0
I already know that, but i got direct link download and all codes will be put here asap + thanks ^_^
 
ThuGie.NL - Webmaster
Joined
Apr 16, 2006
Messages
607
Reaction score
55
oh if intrested i could put up a fix for the invertory + Receipt
meaning the Receipt will log what was bought by the players
and the invertory what items a user has.
it didnt seem to work at first..
but my db is currently a mess since i'm removing stuff that aint used + trying to fix the logout server crash problem.
 
ThuGie.NL - Webmaster
Joined
Apr 16, 2006
Messages
607
Reaction score
55
well heres a quick fix since my db is still a mess and dont have the time to fix it :S,
Code:
CREATE TABLE [dbo].[Receipt] (
	[lUSN] [int] NULL ,
	[BuyDate] [datetime] NULL ,
	[ItemID] [int] NULL ,
	[Piece] [int] NULL ,
	[BuyFlag] [int] NULL 
) ON [PRIMARY]
GO
change the [BuyDate] [datetime] NULL ,
from datetime to something like varchar(50) as i said its a quick fix it should fix up the invertory 2 ;).

edit-1:
before i forget currently also working on a website for tanky.
translating the korean website + adding the php needed to run it ;).
just to lazy to install flash so i can fix the flash files in english :p.
 
Junior Spellweaver
Joined
Jan 24, 2007
Messages
162
Reaction score
0
hehe i added the code and removed the download link :D

and tyt on your site :D GL i cant wait for it XD

EDIT :

btw can u please write the right varchar for the code >< i got little mixed up im not really good in SQL..
sorry :p
+ im gonna add a Rev for the server ill keep updating daily with new codes and stuff
 
Last edited:
Junior Spellweaver
Joined
Mar 9, 2006
Messages
145
Reaction score
4
that works?

anyboddy could put online (THE SRV and acess it with the client?)
 
Junior Spellweaver
Joined
Jan 24, 2007
Messages
162
Reaction score
0
i'm not really sure .. i dont anyone tested..

well im gonna release the Rev1 right now :D!!
 
ThuGie.NL - Webmaster
Joined
Apr 16, 2006
Messages
607
Reaction score
55
Oh right i changed my logging directory to the directory that the server files are,
anybody intrested?
so instead C:\LogFile it will log it to
serverfile\directory\LogFile

I only did it to the translated server files though.
 
Back
Top