[CSGO] Problem with clan tag
Posted: Sat Mar 11, 2017 8:38 pm
Hey Everyone !
I need your help and threethings.
The first :
I want to change the player's clan tag, but it does not work. No mistakes, but nothing happens.
Maybe i used the wrong way, but i have just found that.
The second :
I want to know if it's possible like with Sourcemod to edit client cookie (SetClientCookie / GetClientCookie) ?
I found nothing on it for Sourcepython.
The third :
I want to give an helmet and it does not work.
Sincerly Existenz.
I need your help and threethings.
The first :
I want to change the player's clan tag, but it does not work. No mistakes, but nothing happens.
Maybe i used the wrong way, but i have just found that.
Syntax: Select all
@Event('player_spawn')
def _on_player_spawn(event_data):
player = Player.from_userid(event_data['userid'])
if player.steamid == 'BOT':
return
player.clan_tag = "Test"
The second :
I want to know if it's possible like with Sourcemod to edit client cookie (SetClientCookie / GetClientCookie) ?
I found nothing on it for Sourcepython.
The third :
I want to give an helmet and it does not work.
Syntax: Select all
player.has_helmet = True
Sincerly Existenz.