Thread: [CSGO] Set Cash
View Single Post
brunoronning
Senior Member
Join Date: Jan 2014
Location: Brazil
Old 01-15-2018 , 16:04   Re: [CSGO] Set Cash
Reply With Quote #4

Quote:
Originally Posted by spancer35 View Post
unfortunately doesn't worked
Untested:
PHP Code:
#include <sourcemod>
#include <sdktools>
#include <csgocolors>

public Plugin myinfo 
{
    
name "Para ver",
    
author "Spancer",
    
version "1.0",
    
description "!para yazan kisinin parasini fuller",
    
url "http://blood-clan.net"
}

public 
void OnPluginStart()
{
    
RegConsoleCmd("sm_para"paraver);
}

public 
void OnConfigsExecuted()
{
    
// Set MaxMoney 60000.
    
ConVar cMaxMoney FindConVar("mp_maxmoney");

    if (
cMaxMoney != null)
        
cMaxMoney.SetInt(60000);
}

public 
Action paraver(int clientint args)
{
    
CPrintToChat(client"[BLOOD] Paran Fullendi. Iyi oyunlar!");
    
CPrintToChatAll("[BLOOD] %N !para yazarak parasini fulledi. Sende !para yazarak kendi parani fulleyebilirsin. Iyi oyunlar!"client);

    
SetEntProp(clientProp_Send"m_iAccount"60000);


Last edited by brunoronning; 01-19-2018 at 00:55.
brunoronning is offline