Salut!O sa va arat cat de simplu puteti crea extra-iteme la oameni pentru modul Zombie Deathmatch.
Includem , si celelalte module necesare:
In final va arata asa:
Includem
- Cod:
#include <amxmodx>
#include <zombie_deathmatch>
- Cod:
[code]new g_new_human_item[/code]
Stabilim atributele extra-itemelor:
public zd_human_item_selected(iPlayer, iItemIndex)
{
if(g_new_human_item == iItemIndex)
{
client_print(iPlayer, print_chat, "[Zombie Deathmatch] You purchased a new human item!")
}
}
In final va arata asa:
- Cod:
#include <amxmodx>
#include <zombie_deathmatch>
new g_new_human_item
public plugin_init()
{
g_new_human_item = zd_register_human_item( "New Human Item", 3000)
}
public zd_human_item_selected(iPlayer, iItemIndex)
{
if(g_new_human_item == iItemIndex)
{
client_print(iPlayer, print_chat, "[Zombie Deathmatch] You purchased a new human item!")
}
}