Existing user? Sign in
Sign up
Games
Servers
Useful
User
Pass
2FA
cerere plugin
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Resources
Author
Message
1473
Zetx
[Mentally Stable]
Status: Offline
(since 23-07-2015 21:15)
Joined: 27 Mar 2013
Posts: 21
,
Topics: 3
Location:
Romania
Reputation:
34.6
Votes
: 7
Posted: 03-04-2013, 17:01:12
| Translate post to:
... (
Click for more languages
)
Am nevoie de un plugin adica de zp bank (autosave) pt zombie plague 4.3 .
Am gasit unele pe google dar nus bun...
PS AM rezolvat asta
dar acum vreau zp teleport tot pt zp 4.3
am Gasit teleport 12 dar numi porneste srv de la plagul ala.......... cum sa rezolv problema?
Last edited by
Zetx
on 04-04-2013, 16:21:18; edited 2 times in total
0
0
Back to top
Zetx
[Mentally Stable]
Status: Offline
(since 23-07-2015 21:15)
Joined: 27 Mar 2013
Posts: 21
,
Topics: 3
Location:
Romania
Reputation:
34.6
Votes
: 7
Posted: 04-04-2013, 16:20:37
| Translate post to:
... (
Click for more languages
)
Up+++
0
0
Back to top
SamDude
[★★★]
Status: Offline
(since 09-07-2020 08:13)
Joined: 06 Jun 2010
Posts: 10525
,
Topics: 516
Location:
Romania
Reputation:
317.7
Votes
: 122
Posted: 04-04-2013, 19:25:27
| Translate post to:
... (
Click for more languages
)
ZP Bank
.
Teleport
. Ca sa mearga il adaugi in plugins-zplague.ini la sfarsit, la "Add extra items here".
0
0
Back to top
Zetx
[Mentally Stable]
Status: Offline
(since 23-07-2015 21:15)
Joined: 27 Mar 2013
Posts: 21
,
Topics: 3
Location:
Romania
Reputation:
34.6
Votes
: 7
Posted: 04-04-2013, 20:42:16
| Translate post to:
... (
Click for more languages
)
SamDude wrote:
ZP Bank
.
Teleport
. Ca sa mearga il adaugi in plugins-zplague.ini la sfarsit, la "Add extra items here".
Cu bank am rezolvat orcum multumesc.
Dar cu teleportu nu uitate cemi apare
am facut cum ai zis
pass 1
pass 2
pass 3
ce sa fac
@ SamDude
0
0
Back to top
SamDude
[★★★]
Status: Offline
(since 09-07-2020 08:13)
Joined: 06 Jun 2010
Posts: 10525
,
Topics: 516
Location:
Romania
Reputation:
317.7
Votes
: 122
Posted: 04-04-2013, 20:45:53
| Translate post to:
... (
Click for more languages
)
Iti dadea eroarea aia si inainte sa bagi teleportu ? Scoate teleportu si vezi daca tot asa face. Ca sa imi dau seama daca este de la teleport sau nu.
0
0
Back to top
Zetx
[Mentally Stable]
Status: Offline
(since 23-07-2015 21:15)
Joined: 27 Mar 2013
Posts: 21
,
Topics: 3
Location:
Romania
Reputation:
34.6
Votes
: 7
Posted: 04-04-2013, 20:49:38
| Translate post to:
... (
Click for more languages
)
daca scot teleportu merge foarte bine daca il bag da eroarea aia...
Inco problema la cumparare hp..
Code:
new const item_name[] = "Buy HP!"
new g_itemid_buyhp
new hpamount
public plugin_init()
{
register_plugin("[ZP] Buy Health Points", "1.0", "T[h]E Dis[as]teR")
hpamount = register_cvar("zp_buyhp_amount", "200")
g_itemid_buyhp = zp_register_extra_item(item_name, 5, ZP_TEAM_HUMAN & ZP_TEAM_ZOMBIE)
}
public zp_extra_item_selected(id,itemid)
{
if(!is_user_alive(id))
return PLUGIN_HANDLED;
if(itemid==g_itemid_buyhp)
{
if(zp_get_user_ammo_packs(id) < 5)
{
client_print(id, print_chat,"[ZP] Not enough Ammopacks!");
return PLUGIN_HANDLED;
}
else
{
set_user_health(id,get_user_health(id)+get_pcvar_num(hpamount));
zp_set_user_ammo_packs(id, zp_get_user_ammo_packs(id) - 5);
client_print(id, print_chat,"[ZP] You Bought HP!");
}
}
return PLUGIN_CONTINUE;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang3082\\ f0\\ fs16 \n\\ par }
*/
in loc de 200 am bagat 1000 dar in joc tot 200 pot sa cumpar...
0
0
Back to top
Zetx
[Mentally Stable]
Status: Offline
(since 23-07-2015 21:15)
Joined: 27 Mar 2013
Posts: 21
,
Topics: 3
Location:
Romania
Reputation:
34.6
Votes
: 7
Posted: 05-04-2013, 14:01:12
| Translate post to:
... (
Click for more languages
)
Up+++
0
0
Back to top
ShandyRo96
[Mentally Stable]
Status: Offline
(since 09-01-2017 09:45)
Joined: 11 Jan 2013
Posts: 300
,
Topics: 19
Location:
Romania
Reputation:
101.3
Votes
: 34
Posted: 06-04-2013, 16:35:23
| Translate post to:
... (
Click for more languages
)
Zetx wrote:
daca scot teleportu merge foarte bine daca il bag da eroarea aia...
Inco problema la cumparare hp..
Code:
new const item_name[] = "Buy HP!"
new g_itemid_buyhp
new hpamount
public plugin_init()
{
register_plugin("[ZP] Buy Health Points", "1.0", "T[h]E Dis[as]teR")
hpamount = register_cvar("zp_buyhp_amount", "200")
g_itemid_buyhp = zp_register_extra_item(item_name, 5, ZP_TEAM_HUMAN & ZP_TEAM_ZOMBIE)
}
public zp_extra_item_selected(id,itemid)
{
if(!is_user_alive(id))
return PLUGIN_HANDLED;
if(itemid==g_itemid_buyhp)
{
if(zp_get_user_ammo_packs(id) < 5)
{
client_print(id, print_chat,"[ZP] Not enough Ammopacks!");
return PLUGIN_HANDLED;
}
else
{
set_user_health(id,get_user_health(id)+get_pcvar_num(hpamount));
zp_set_user_ammo_packs(id, zp_get_user_ammo_packs(id) - 5);
client_print(id, print_chat,"[ZP] You Bought HP!");
}
}
return PLUGIN_CONTINUE;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang3082\\ f0\\ fs16 \n\\ par }
*/
in loc de 200 am bagat 1000 dar in joc tot 200 pot sa cumpar...
normal tu ai bagat in sma 1000 dar nu ai si compilat acel sma .
Compileaza sma-ul iar apoi il bagi in plugins si va merge
0
0
Back to top
Freakz Forum Index
->
Trash Bin
->
CS 2006-2019 (Archived)
->
Resources
The time now is 11-11-2024, 22:08:44
Copyright info
Based on phpBB
ro
/
com
B
Login
I forgot my password
World of Warcraft
Login for more...
Download WoW 7.3.5
Misc
eSports
Achievements
Buy reputation with votes
Reputation trades
Forum rules
Ban list
Members list
User guide (FAQ)
World of Warcraft
View details