16.01.2014, 17:16
Hello!
Sorry for my bad English, I'm Russian
I was bored and I decided to write game modes from scratch (new.pwn)
Description:
- Registration System (MySQL r8 ).
- Sex system.
- System skins.
- Admin system.
- Few commands (dc_cmd):
** /sethp (give HP the player)
** /givegun (to give weapons to the player)
** /goto (to teleport to the player)
** /gethere (teleport to the player itself)
- Ability to replenish health on respawn.
- Well code optimization.
- Encryption password for MD5.
Lines: 220
Working time: 15 minutes
In his spare time will refine this game modes.
Download game mode: http://rghost.ru/download/51703249/9...%20archive.rar (9,2 MB)
Video: http://www.youtube.com/watch?v=7VCG3...ature=youtu.be
Sorry for my bad English, I'm Russian
I was bored and I decided to write game modes from scratch (new.pwn)
Description:
- Registration System (MySQL r8 ).
- Sex system.
- System skins.
- Admin system.
- Few commands (dc_cmd):
** /sethp (give HP the player)
** /givegun (to give weapons to the player)
** /goto (to teleport to the player)
** /gethere (teleport to the player itself)
- Ability to replenish health on respawn.
- Well code optimization.
- Encryption password for MD5.
Lines: 220
Working time: 15 minutes
In his spare time will refine this game modes.
Download game mode: http://rghost.ru/download/51703249/9...%20archive.rar (9,2 MB)
Video: http://www.youtube.com/watch?v=7VCG3...ature=youtu.be
Code:
CREATE TABLE `accounts` ( `Name` varchar(24) character set cp1251 NOT NULL, `Key` varchar(32) NOT NULL, `Admin` int(1) NOT NULL, `Skin` int(3) NOT NULL, `Sex` int(1) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8;