[Reploaded] HOT Online Repack
I would like to thank @
hellrazor doing repload these files.
Server files:
https://mega.co.nz/#F!jVAWDQKY!l5Fs2FJ1ykrlpoaBzFUqSw
Client:
https://mega.co.nz/#F!yYY2XIhD!F-KOUjR-DH_wDEp7_I906A
Mini-tutorial
PS: Serverfiles is already set to localhost
- Restore DBs (MySQL and MSSQL)
- In serverfiles, change config files to your configuration.
- Open application_manager.exe and open servers.
- If you want change ip of Client, you can change in login_server.ini (Client folder).
- Open your client.
Already contain two accounts registered in the database:
ID : PASSWORD
Quote:
ragezone : a12345
ragezone2 : a12345
________________________________________________
You can find source code in this topic:
http://forum.ragezone.com/f857/hot-o...e-code-882248/
Credits:
DNC -> Repack
hellrazor -> Reploaded
Re: [Reploaded] HOT Online Repack
Thanks for reupload, game files are %100 working?
Re: [Reploaded] HOT Online Repack
upload all in 1 link plox
Re: [Reploaded] HOT Online Repack
Cool release! Does this server still use 4 GBs of RAM?
Re: [Reploaded] HOT Online Repack
@Viserion
Nice release, grats.
Quote:
Originally Posted by
B1QB0SS
upload all in 1 link plox
Then download it and make a single download link -.-
Don't complain and appreciate you have access to the files.
Quote:
Originally Posted by
iceblade112
Cool release! Does this server still use 4 GBs of RAM?
I would not expect it to be utilizing less, since this is still based off the original works.
Re: [Reploaded] HOT Online Repack
Re: [Reploaded] HOT Online Repack
Quote:
Originally Posted by
boomzabboy
MSSQL use Ver. ?
SQL Server 2008 R2
Re: [Reploaded] HOT Online Repack
[QUOTE=xlw00tlx;8252825]i had problems with game addict database
a friend helped me and fixed it with this query
change paths and stuff to match yours
Code:
USE [master]
GO
/****** Object: Database [GameAddicted] Script Date: 10/31/2014 18:18:22 ******/
CREATE DATABASE [GameAddicted] ON PRIMARY
( NAME = N'GameAddicted', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.LOCALHOST\MSSQL\DATA\GameAddicted.mdf' , SIZE = 3072KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
LOG ON
( NAME = N'GameAddicted_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.LOCALHOST\MSSQL\DATA\GameAddicted_1.ldf' , SIZE = 1792KB , MAXSIZE = 2048GB , FILEGROWTH = 0)
GO
ALTER DATABASE [GameAddicted] SET COMPATIBILITY_LEVEL = 90
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [GameAddicted].[dbo].[sp_fulltext_database] @Action = 'disable'
end
GO
ALTER DATABASE [GameAddicted] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [GameAddicted] SET ANSI_NULLS OFF
GO
ALTER DATABASE [GameAddicted] SET ANSI_PADDING OFF
GO
ALTER DATABASE [GameAddicted] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [GameAddicted] SET ARITHABORT OFF
GO
ALTER DATABASE [GameAddicted] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [GameAddicted] SET AUTO_CREATE_STATISTICS ON
GO
ALTER DATABASE [GameAddicted] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [GameAddicted] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [GameAddicted] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [GameAddicted] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [GameAddicted] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [GameAddicted] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [GameAddicted] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [GameAddicted] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [GameAddicted] SET DISABLE_BROKER
GO
ALTER DATABASE [GameAddicted] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [GameAddicted] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [GameAddicted] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [GameAddicted] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [GameAddicted] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [GameAddicted] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [GameAddicted] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [GameAddicted] SET READ_WRITE
GO
ALTER DATABASE [GameAddicted] SET RECOVERY FULL
GO
ALTER DATABASE [GameAddicted] SET MULTI_USER
GO
ALTER DATABASE [GameAddicted] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [GameAddicted] SET DB_CHAINING OFF
GO
EXEC sys.sp_db_vardecimal_storage_format N'GameAddicted', N'ON'
GO
USE [GameAddicted]
GO
/****** Object: User [ragezone] Script Date: 10/31/2014 18:18:22 ******/
CREATE USER [ragezone] WITHOUT LOGIN WITH DEFAULT_SCHEMA=[dbo]
GO
/****** Object: Table [dbo].[AddictedTable] Script Date: 10/31/2014 18:18:23 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[AddictedTable](
[accountid] [int] NOT NULL,
[identity_card] [varchar](32) NOT NULL,
[isadult] [int] NULL,
CONSTRAINT [PK_AddictedTable] PRIMARY KEY CLUSTERED
(
[accountid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @Value=N'账号id' , @level0type=N'SCHEMA' @level0name=N'dbo', @level1type=N'TABLE' @level1name=N'AddictedTable', @level2type=N'COLUMN' @level2name=N'accountid'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @Value=N'身份证号码' , @level0type=N'SCHEMA' @level0name=N'dbo', @level1type=N'TABLE' @level1name=N'AddictedTable', @level2type=N'COLUMN' @level2name=N'identity_card'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @Value=N'是否需要参与防沉迷,为0表示参与。' , @level0type=N'SCHEMA' @level0name=N'dbo', @level1type=N'TABLE' @level1name=N'AddictedTable', @level2type=N'COLUMN' @level2name=N'isadult'
GO
/****** Object: Default [DF_AddictedTable_identity_card] Script Date: 10/31/2014 18:18:23 ******/
ALTER TABLE [dbo].[AddictedTable] ADD CONSTRAINT [DF_AddictedTable_identity_card] DEFAULT ('') FOR [identity_card]
GO
/****** Object: Default [DF_AddictedTable_isadult] Script Date: 10/31/2014 18:18:23 ******/
ALTER TABLE [dbo].[AddictedTable] ADD CONSTRAINT [DF_AddictedTable_isadult] DEFAULT ((0)) FOR [isadult]
GO
-------------------------------------------------------------------------------------
Using 2014 sqlexpress ...have these errors restoring db ......any fix for sqlexpress 2014 ?
Msg 102, Level 15, State 1, Line 98
Incorrect syntax near '@level0name'.
Msg 102, Level 15, State 1, Line 100
Incorrect syntax near '@level0name'.
Msg 102, Level 15, State 1, Line 102
Incorrect syntax near '@level0name'.
Re: [Reploaded] HOT Online Repack
how to modify the server config files,use the hamachi ,let the other ppl play the game
Re: [Reploaded] HOT Online Repack
thanks
client is in English?
Re: [Reploaded] HOT Online Repack
sorry for necro posting
how do you create an account?
i got all runing but cannot login
Re: [Reploaded] HOT Online Repack
Quote:
Originally Posted by DNC
If you entered the login / password into the MSSQL I don't recall, but I'm fairly positive the password needed to be MD5
http://www.md5encrypter.com/ <--- use to take plain text password and encrypt into MD5 which goes in DB if memory serves properly.
After you create a new account, you must restart the AccountServer.
You'll need to restart a "single service" after every new account creation.
Follow below for the restarter script that rogan12 posted.
http://forum.ragezone.com/f111/heroe...ml#post7127917
Quote:
Originally Posted by
rogan12
That's why you start kill.bat....
Look inside it :
kill.bat
Code:
@ECHO off
Title AccountServer Restarter
:top
echo "Killing Server"
TASKKILL /T /IM newaccount_server.exe
echo "Killed"
echo "Sleeping for 300 seconds"
choice /T 300 /C X /D X /N > NUL
goto :top
Got it ?
regards
rogan12
It has been a long time since I touched this and memory isn't serving me after finishing 2 other projects this week.
Brain dead is an understatement. In the above Quote, I don't recall if you need to encrypt the password to MD5 or not... again my brain is saying F**k off to me right now.
Re: [Reploaded] HOT Online Repack
Thanks for share! I can log in the game and choose character, but cannot enter into the game.
Re: [Reploaded] HOT Online Repack
Anyone else having problem downloading client.zip.015???
Been saying temporary error for the past 2 days.
Re: [Reploaded] HOT Online Repack
Quote:
Originally Posted by
alkirah
Anyone else having problem downloading client.zip.015???
Been saying temporary error for the past 2 days.
same here, hopefully they post mirror for that file.