View Single Post
OnePL
BANNED
Join Date: May 2012
Location: GB
Old 04-25-2014 , 02:11   Re: Starting Money [24/04/2014]
Reply With Quote #3

Edit and use fakemeta
PHP Code:
#include <amxmodx>
#include <hamsandwich>
#include <fakemeta>

#define PLUGIN "Starting Money"
#define VERSION "1.0.0"
#define AUTHOR "Simple32"

new gSpawnMoney;

public 
plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)

    
RegisterHam(Ham_Spawn"player""StartingMoney");

    
gSpawnMoney register_cvar("spawn_money""800");
}

public 
StartingMoney(id)
    if(
get_pcvar_num(gSpawnMoney) && get_pdata_int(id115) != get_pcvar_num(gSpawnMoney))
        
set_pdata_int(id115get_pcvar_num(gSpawnMoney)) 
OnePL is offline
Send a message via ICQ to OnePL Send a message via AIM to OnePL Send a message via Yahoo to OnePL Send a message via Skype™ to OnePL