Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG 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 ?
 
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
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
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
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
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
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
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
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
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
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
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
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
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