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!

E-Pin System

AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
Hello Brothers
how i can make E-Pin System in Charge Silk i mean like Joymax
Charge Silk by E-Pin
E-pin : XXXXXXXXXXXXXXXX ( 16 Digit )
Serial : XXXXXXXX ( 8 Numbers )

i hope found the Right Answer
and what about Silk Charge History ??
how i can know each player his/her Charge History ?
 
Skilled Illusionist
Joined
Oct 24, 2011
Messages
330
Reaction score
201
Hello Brothers
how i can make E-Pin System in Charge Silk i mean like Joymax
Charge Silk by E-Pin
E-pin : XXXXXXXXXXXXXXXX ( 16 Digit )
Serial : XXXXXXXX ( 8 Numbers )

i hope found the Right Answer
and what about Silk Charge History ??
how i can know each player his/her Charge History ?

if you good programmer in php.. you can make it easy.. :D

i have Epin System in my server ^^
 
Upvote 0
Initiate Mage
Joined
Dec 21, 2011
Messages
4
Reaction score
0
Hello Brothers
how i can make E-Pin System in Charge Silk i mean like Joymax
Charge Silk by E-Pin
E-pin : XXXXXXXXXXXXXXXX ( 16 Digit )
Serial : XXXXXXXX ( 8 Numbers )

i hope found the Right Answer
and what about Silk Charge History ??
how i can know each player his/her Charge History ?

you will need to review this PHP function and how to make your own SQL table
PHP Functions:
uniqid()
time()
substr()
This will help you creating your epin ID and password all you will need now just store them in database and give it to your users it's pretty easy
 
Upvote 0
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
if you good programmer in php.. you can make it easy.. :D

i have Epin System in my server ^^

can you share it ?

can any one help me in that ( Statiic - jangan - Hectourmousa ... etc )
please Help :D
can you share please
 
Last edited:
Upvote 0

SGA

Newbie Spellweaver
Joined
May 1, 2009
Messages
75
Reaction score
5
it is not easy to make secure epin system you need good php knowledge and a lot of time i think no one will share it with you
 
Upvote 0
Skilled Illusionist
Joined
Oct 24, 2011
Messages
330
Reaction score
201
I wanna buy it just pm me with price and a proof ^^

i send my msn for you in private mensage.. i have this system in my server i show for u

my system works.. you endered epin, if you put wrong your can try 5 time if your put 5 time invalid epin, system block your account for 48 hour ^_^
 
Upvote 0

SGA

Newbie Spellweaver
Joined
May 1, 2009
Messages
75
Reaction score
5
i send my msn for you in private mensage.. i have this system in my server i show for u

my system works.. you endered epin, if you put wrong your can try 5 time if your put 5 time invalid epin, system block your account for 48 hour ^_^

can you show use video demo please :)
Thank you in advance
 
Upvote 0
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
SWP 3 have e-pin system for silk but this panel Turkish, you must translate to English


PHP:
function keyolustur($silkmiktar)
$silkmiktar = silk amount

good luck
 
Upvote 0
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
SWP 3 have e-pin system for silk but this panel Turkish, you must translate to English


PHP:
function keyolustur($silkmiktar)
$silkmiktar = silk amount

good luck
thanks CEZALAND For your answer
but which things i must change in PHP
and i must Create Table in SQL or what i must do ?
sorry i'm noob in php
 
Upvote 0
Junior Spellweaver
Joined
Sep 21, 2011
Messages
193
Reaction score
35
thanks CEZALAND For your answer
but which things i must change in PHP
and i must Create Table in SQL or what i must do ?
sorry i'm noob in php

here:
USE [SRO_VT_ACCOUNT]
GO
/****** Object: Table [dbo].[TB_Keys] Script Date: 11/12/2011 22:19:48 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TB_Keys](
[id] [int] IDENTITY(1,1) NOT NULL,
[kod] [varchar](255) NOT NULL,
[miktar] [int] NOT NULL,
[durum] [int] NOT NULL CONSTRAINT [DF_TB_Keys_durum] DEFAULT ((1)),
[kullanan] [varchar](255) NULL,
[ekleyen] [varchar](255) NULL,
CONSTRAINT [PK_TB_Keys] PRIMARY KEY CLUSTERED
(
[id] 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
 
Upvote 0
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
here:
USE [SRO_VT_ACCOUNT]
GO
/****** Object: Table [dbo].[TB_Keys] Script Date: 11/12/2011 22:19:48 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TB_Keys](
[id] [int] IDENTITY(1,1) NOT NULL,
[kod] [varchar](255) NOT NULL,
[miktar] [int] NOT NULL,
[durum] [int] NOT NULL CONSTRAINT [DF_TB_Keys_durum] DEFAULT ((1)),
[kullanan] [varchar](255) NULL,
[ekleyen] [varchar](255) NULL,
CONSTRAINT [PK_TB_Keys] PRIMARY KEY CLUSTERED
(
[id] 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
very very thanks ModGift after create this table
what i must do ??
sorry for noob question
when i try use Function.php give me Blank Page
please Explain to me more after Create Table
 
Upvote 0
Junior Spellweaver
Joined
Sep 21, 2011
Messages
193
Reaction score
35
very very thanks ModGift after create this table
what i must do ??
sorry for noob question
when i try use Function.php give me Blank Page
please Explain to me more after Create Table

Download swp3 and look is source code please :)

in folder admin/admin.php silk codes create page.
and in folder index.php silk codes use methods.
functions in inc/function.php
 
Last edited:
Upvote 0
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
PHP:
   function keyolustur($silkmiktar)
This function for create a key, you must make a new table in database or you can translate swp 3 and use it.
Good luck

And explain of this table;
kod = e-pin(code)
miktar = silk amount
durum = used or no
kullanan = if used who used this code
ekleyen = who added this code

good luck again
 
Upvote 0
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
PHP:
   function keyolustur($silkmiktar)
This function for create a key, you must make a new table in database or you can translate swp 3 and use it.
Good luck

And explain of this table;

kod = e-pin(code)
miktar = silk amount
durum = used or no
kullanan = if used who used this code
ekleyen = who added this code

good luck again
i can't found admin.php
 
Upvote 0
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
admin/index.php

i login with me ID PW
and i can see Y.K.P
when i press
Code:
OOPS!....Page Error 404b has occurred.
any idea
i use Host Plan
if u can upload AppServ and Required Files
but really i'm very happy because you answer me
 
Upvote 0
Initiate Mage
Joined
Jan 9, 2009
Messages
0
Reaction score
424
ykp going to admin.php
admin.php working with .htaccess file
install appserv 2.5.10 and use ntwdblib.dll and finally you must activate mod_rewrite in Apache server
 
Upvote 0
AssassinS Silkroad
Joined
Sep 30, 2011
Messages
424
Reaction score
92
ykp going to admin.php
admin.php working with .htaccess file
install appserv 2.5.10 and use ntwdblib.dll and finally you must activate mod_rewrite in Apache server
that's problem Now
Code:
Fatal error: Call to undefined function mssql_connect() in C:\AppServ\www\epin\inc\connection.php on line 9

i add it on my Host
and Login Successful
but how i can create Codes in SQL Table because i can't go to admin
what i must type
kod = e-pin(code)
miktar = silk amount
durum = 1 OR 0 OR what ??
kullanan = if used who used this code
ekleyen = who added this code " gm or what "
 
Upvote 0
Back
Top