Raised This Month: $51 Target: $400
 12% 

NightCrawler Remake v0.0.4


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   ALL        Category:   Admin Commands       
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-08-2023 , 06:33   NightCrawler Remake v0.0.4
Reply With Quote #1

NightCrawler Remake
- v0.0.1, posted at : 08/11/2023

First of all, i must leave credits on Exolent[jNr] for making this awesome mod several years ago.
I decided to make my own remake of this mod because i wanted to make it fresh with modificated weapons.
Plus, since i am using on a multi-mod server i needed to make the game 1:1 ratio to allow more nightcrawlers per round.


Gameplay
Humans vs Nightcrawlers. Humans get weapons and must survive the whole round.
Nightcrawlers are invisible, can climb walls by pressing E (+USE) and can teleport by pressing F (impulse 100).
The wallhang is clean allowing the player to "surf" the wall making cool jumps to hit & run.


What changes?
  • Humans can teleport (amount defined on configuration file, you can make it 0 to disable)
  • Api that allows to add special weapons like zombie weapons
  • 1:1 ratio
  • A lot of bug fixes like humans could be invisible


What features are included?
  • Autojoin
  • Autoteam balance (safe)
  • Player Model change
  • You can replace Knife model & sounds via configuration file
  • A lot of stuff. Check configuration file


Watch here a short Video


Configuration file:
Code:
; If 1 player will autojoin
AUTO_JOIN_TEAM 1

; Game Name
GAME_NAME "NightCrawlers Remake"

; Ignore Fall Damage
IGNORE_FALLDAMAGE 1

; Set Human Values now
HUMAN_SPEED_FLOAT 325.0
HUMAN_GRAVITY_FLOAT 750.0
HUMAN_HEALTH 200
HUMAN_TELEPORTS 1

; Now NightCrawler Values
NC_SPEED_FLOAT 375.0
NC_GRAVITY_FLOAT 575.0
NC_HEALTH 200
NC_TELEPORTS 3

; The amount of time a Nightcrawler stays
; visible after receive damage
VISIBLE_TIME_FLOAT 1.0

; How much seconds player must wait until
; receive the teleports after get spawned
TP_SPAWN_DELAY_FLOAT 5.0

; Speed when crawling the walls
CRAWL_SPEED 550

; Models now
MODEL_NIGHTCRAWLER nightcrawler_nc
MODEL_HUMAN nightcrawler_ct
MODEL_KNIFE models/v_nightcrawler-sword.mdl

; Sounds
; Win Sounds
SOUND_NC_WIN nightcrawlers/nc_win.wav
SOUND_HUMAN_WIN nightcrawlers/human_win.wav

; Misc Sounds
SOUND_PAIN nightcrawlers/pain.wav
SOUND_TELEPORT nightcrawlers/teleport.wav

; Death Sounds - We start from 0 because i am lazy
DEATH_SOUND_0 nightcrawlers/nc_death1.wav
DEATH_SOUND_1 nightcrawlers/nc_death2.wav
DEATH_SOUND_2 nightcrawlers/nc_death3.wav
DEATH_SOUND_3 nightcrawlers/nc_death4.wav

; Knife Sounds - We start from 0 because i am really lazy
KNIFE_SOUND_0 nightcrawlers/sword_strike1.wav
KNIFE_SOUND_1 nightcrawlers/sword_strike1.wav
KNIFE_SOUND_2 nightcrawlers/sword_strike1.wav
KNIFE_SOUND_3 nightcrawlers/sword_strike1.wav
KNIFE_SOUND_4 nightcrawlers/sword_strike2.wav
KNIFE_SOUND_5 weapons/knife_slash1.wav
KNIFE_SOUND_6 weapons/knife_slash2.wav
KNIFE_SOUND_7 nightcrawlers/sword_strike4.wav

include file:
PHP Code:
#if defined _nightcrawlers_included
  #endinput
#endif
#define _nightcrawlers_included

enum {
    
Primary_Weapon,
    
Secondary_Weapon
}

/**
 * Registers Weapons
 *
 * @param szName    Class Name
 * @param Secondary    Primary = 0 | Secondary = 1
 * @param szFlag    Flag required to use the Weapon
 * @param szFlagDesc    Description - ie. "VIP"
 * @return        An internal Weapon Class ID
 */
native nc_register_weapon(const szName[], Secondary, const szFlag[], const szFlagDescription[])

/**
 * Get User Human
 *
 * @param Id        Player Index
 * @return        1/0  1- Human | 0- NightCrawler
 */
native nc_is_user_human(id)

/**
 * Called when a player choses his Primary/Secondary Weapons
 *
 * @param id        Player's Index
 * @param WeaponID    INTERNAL Index of the Weapon. Required on sub-plugins
 */
forward nc_primary_selected(idWeaponID)
forward nc_secondary_selected(idWeaponID)

/**
 * Called when after player spawned and stuff assigned
 *
 * @param id        Player's Index
 */
forward nc_spawn_post(id
Attached Files
File Type: sma Get Plugin or Get Source (nc_basic_weapons.sma - 104 views - 1.6 KB)
File Type: zip nc_remake.zip (7.60 MB, 73 views)
File Type: inc nightcrawlers.inc (1.0 KB, 50 views)
File Type: ini nightcrawlers.ini (1.6 KB, 49 views)
File Type: sma Get Plugin or Get Source (nightcrawler_remake.sma - 80 views - 36.4 KB)
__________________

Last edited by Jhob94; 11-13-2023 at 06:00. Reason: Added v0.0.4
Jhob94 is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-08-2023 , 06:34   Re: NightCrawler Remake
Reply With Quote #2

Reservated for Third-Party plugins.

Disclaimer: I am not the author of flare & frost nades.



Note: Tomorrow is my birthday so i'll be out for the weekend.
Despite everything should be fine, if you find any bug please be patient as i'll fix it asap.
Attached Files
File Type: sma Get Plugin or Get Source (nc_human_nades.sma - 63 views - 301 Bytes)
File Type: sma Get Plugin or Get Source (nc_frostnades.sma - 67 views - 27.2 KB)
File Type: sma Get Plugin or Get Source (nc_flarenades.sma - 80 views - 28.0 KB)
__________________

Last edited by Jhob94; 11-08-2023 at 06:44.
Jhob94 is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-08-2023 , 11:46   Re: NightCrawler Remake v0.0.2
Reply With Quote #3

V0.0.2 Added

This was too soon

Players were abusing of Teleport right when they Spawned so i added a Delay on Spawn.

By default people need to wait 5 seconds until they receive their teleports. You can change it via configuration file.

I highly recommend users to re-download the sma & ini file and i am deeply sorry for the inconvenience.
__________________
Jhob94 is offline
Ace67
Senior Member
Join Date: Sep 2020
Location: France
Old 11-09-2023 , 02:55   Re: NightCrawler Remake v0.0.2
Reply With Quote #4

Great Mod. Would be better with a good community with players

Congratulations !!!
__________________
CS:CZ > CS 1.6
Ace67 is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-09-2023 , 05:22   Re: NightCrawler Remake v0.0.3
Reply With Quote #5

Added v0.0.3

As requested i added a menu to choose previous weapons on Spawn.
Please keep the requests here on this thread instead of Private Messages.
__________________
Jhob94 is offline
xDrugz
Senior Member
Join Date: Jul 2011
Location: return 4;
Old 11-09-2023 , 07:13   Re: NightCrawler Remake v0.0.3
Reply With Quote #6

sounds cool! thank you.
__________________
xDrugz is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 11-13-2023 , 05:46   Re: NightCrawler Remake v0.0.4
Reply With Quote #7

V0.0.4 Added

- Now guns menu are open with M key (chooseteam & jointeam commands)
- Added a bombsite so the round can end on certain maps
__________________
Jhob94 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 16:25.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode