[CAMPANIE STAFF]Cautam moderatori si designeri activi!
Welcome to WTFCS Community Forums!
Servere gaming la super-preturi! [HOSTING SERVICE]
-->






[Zombie Deathmatch]Tutorial Inregistrare Extra-Iteme Zombie
Author : eXtreamStyle, Category : Tutoriale, 2 Replyes, 1073 Views
EVALUATE THIS TOPIC
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
1 Guest(s)
Incepator
 
23
POSTS
23
THREADS
0
REPUTATION
Male
Sex

WtfCs Coins: 0[w]
05-27-2013, 09:51 PM (This post was last modified: 05-27-2013, 09:52 PM by eXtreamStyle.)
#1
Counter Strike Zombie Deathmatch
Salut!O sa va arat cat de simplu puteti crea extra-iteme la zombie pentru modul Zombie Deathmatch.
Includem <amxmodx> , <zombie_deathmatch> si celelalte module necesare:
Code:
#include <amxmodx>
#include <zombie_deathmatch>
Inregistram o variabila globala:
Code:
new g_new_zombie_item
Inregistram extra-itemul in meniu:
Code:
public plugin_init()
{      
    g_new_zombie_item = zd_register_zombie_item( "New Zombie Item", 3000)
           /* 3000 reprezinta pretul */
}
Stabilim atributele extra-itemelor:
Code:
public zd_zombie_item_selected(iPlayer, iItemIndex)
{
        if(g_new_zombie_item == iItemIndex)
        {
        client_print(iPlayer, print_chat, "[Zombie Deathmatch] You purchased a new zombie item!")
        }
}
In final va arata asa:
Code:
#include <amxmodx>
#include <zombie_deathmatch>

new g_new_zombie_item

public plugin_init()
{      
    g_new_zombie_item = zd_register_zombie_item( "New Zombie Item", 3000)
}

public zd_zombie_item_selected(iPlayer, iItemIndex)
{
        if(g_new_zombie_item == iItemIndex)
        {
        client_print(iPlayer, print_chat, "[Zombie Deathmatch] You purchased a new zombie item!")
        }
}
Regulament forum: You are not allowed to view links. Register or Login to view.

You are not allowed to view links. Register or Login to view.

You are not allowed to view links. Register or Login to view.
¥ Arthur ¥
 
665
POSTS
4,836
THREADS
359
REPUTATION
Male
Sex

WtfCs Coins: 0[w]
02-11-2014, 07:13 PM
#2
Nu s-a mai uitat nimeni.

T/c.
Regulament forum: You are not allowed to view links. Register or Login to view.

You are not allowed to view links. Register or Login to view.

You are not allowed to view links. Register or Login to view.
¥ Arthur ¥
 
665
POSTS
4,836
THREADS
359
REPUTATION
Male
Sex

WtfCs Coins: 0[w]
02-17-2014, 04:06 PM
#3
Subiect redeschis!
Regulament forum: You are not allowed to view links. Register or Login to view.

You are not allowed to view links. Register or Login to view.

You are not allowed to view links. Register or Login to view.


Forum Jump: