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

CS 1.6 - unlimited cash + spectator mode


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
David30
New Member
Join Date: Feb 2021
Old 02-27-2021 , 00:31   CS 1.6 - unlimited cash + spectator mode
Reply With Quote #1

Hi, I bought a CS dedicated server that includes AMX MOD X.

I need help with:

How do I allow dead players to only spec their team + in 1st person?

(mp_forcechasecam is "1" right now, but after I die I need to press 3 times on the space bar to watch them in 1st person mode)

2) I won't start every round with X amount of cash (for all of the players)



can you help me? thanks

192.168.8.1
jiofi.local.html
http://router-network.onl

Last edited by David30; 03-14-2021 at 04:15.
David30 is offline
CrazY.
Veteran Member
Join Date: May 2015
Location: SP, Brazil
Old 03-01-2021 , 11:02   Re: CS 1.6 - unlimited cash + spectator mode
Reply With Quote #2

Set mp_forcechasecam to "2".
As for the money, there you go:

Code:
#include <amxmodx> #include <cstrike> new amx_roundstart_money public plugin_init() {     register_plugin("Plugin", "Version", "Author")     register_event("HLTV", "EventNewRound", "a", "1=0", "2=0")     amx_roundstart_money = register_cvar("amx_roundstart_money", "16000") } public EventNewRound() {     new amount = get_pcvar_num(amx_roundstart_money)     new players[32], count     get_players(players, count, "h")     for (new i = 0, index; i < count; i++)     {         index = players[i]         cs_set_user_money(index, clamp(amount, 0, 16000))     } }
cvar: amx_roundstart_money
__________________








CrazY. 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 15:40.


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