User
Pass
2FA
 
 

Ce trebuie sã fac ca sã aparã armura pe care o ai în partea de jos a ecranului ?

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Fixed issues
Author Message653
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 14-07-2015, 22:28:25 | Translate post to: ... (Click for more languages)

Salut ! Cum pot sã fac sã aparã câtã armurã ai în parte de jos a ecranului ? Adicã , de exemplu atunci când intru pe server , în partea de jos a ecranului scrie Health: 300 - Class: Human - Ammo packs: 234 - Level: 51 , cum pot sã fac ca tot acolo sã aparã și câtã armurã ai ?
Imagine : http://www.girlshare.ro/34933774.7

0 0
  
Back to top
View user's profile Send private message
destroi112

[DEV]



Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042, Topics: 119
Location: ---------

Reputation: 515.9
Votes: 118

   
Post Posted: 15-07-2015, 00:56:09 | Translate post to: ... (Click for more languages)

Da-mi pluginul care iti pune mesajul asta si iti adaug eu..Cred ca e cel principal sau zombie xp.


Retired from Amxmodx

0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 15-07-2015, 08:36:19 | Translate post to: ... (Click for more languages)

destroi112 wrote:
Da-mi pluginul care iti pune mesajul asta si iti adaug eu..Cred ca e cel principal sau zombie xp.


Zombie xp :


Spoiler:


Iar pluginul principal cred cã e zombie_plague40 ...


Spoiler:

0 0
  
Back to top
View user's profile Send private message
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 15-07-2015, 10:19:57 | Translate post to: ... (Click for more languages)

Incearca pluginul asta: http://www24.zippyshare.com/v/T01NBLF0/file.html



0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 15-07-2015, 14:57:54 | Translate post to: ... (Click for more languages)

-P!C@- nu merge , l-am instalat și nu-mi arata nimic , nu s-a întâmplat nimic .
0 0
  
Back to top
View user's profile Send private message
destroi112

[DEV]



Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042, Topics: 119
Location: ---------

Reputation: 515.9
Votes: 118

   
Post Posted: 15-07-2015, 15:19:23 | Translate post to: ... (Click for more languages)

Cauta in pluginul principal publicul asta:
public ShowHUD(taskid)

si inlocuieste:
Code:

if (id != ID_SHOWHUD)
{
// Show name, health, class, and ammo packs
set_hudmessage(255, 255, 255, HUD_SPECT_X, HUD_SPECT_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "%L %s^nHP: %d - %L %s - %L %d", ID_SHOWHUD, "SPECTATING", g_playername[id], pev(id, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[id])
}
else
{
// Show health, class and ammo packs
set_hudmessage(red, green, blue, HUD_STATS_X, HUD_STATS_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "%L: %d - %L %s - %L %d", id, "ZOMBIE_ATTRIB1", pev(ID_SHOWHUD, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[ID_SHOWHUD])
}
}

cu
Code:

if (id != ID_SHOWHUD)
{
// Show name, health, class, and ammo packs
set_hudmessage(255, 255, 255, HUD_SPECT_X, HUD_SPECT_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "Armura : %d^n%L %s^nHP: %d - %L %s - %L %d", ID_SHOWHUD,get_user_armor(id), "SPECTATING", g_playername[id], pev(id, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[id])
}
else
{
// Show health, class and ammo packs
set_hudmessage(red, green, blue, HUD_STATS_X, HUD_STATS_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "Armura : %d^n%L: %d - %L %s - %L %d", id,get_user_armor(ID_SHOWHUD),"ZOMBIE_ATTRIB1", pev(ID_SHOWHUD, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[ID_SHOWHUD])
}
}



Retired from Amxmodx

0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 15-07-2015, 20:37:25 | Translate post to: ... (Click for more languages)

Am înlocuit cum mi-ai spus și acum apare Armura : acolo unde am vrut , însã problema este cã indiferent de câtã armurã am îmi apare Armura : 1 , nu se modificã deloc .
0 0
  
Back to top
View user's profile Send private message
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 15-07-2015, 21:09:20 | Translate post to: ... (Click for more languages)

Pluginul ce ti l-am dat este sma nu amxx, trebuie sa il compilezi intai apoi il pui in plugins si in pluginis.ini treci numele lui cu .amxx . Ai facut asa?
Compilare aici: https://amx.freakz.ro/




0 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 15-07-2015, 21:41:25 | Translate post to: ... (Click for more languages)

Da așa am fãcut , dar nu merge .
0 0
  
Back to top
View user's profile Send private message
destroi112

[DEV]



Status: Offline
(since 12-03-2020 22:13)
Joined: 24 May 2014
Posts: 4042, Topics: 119
Location: ---------

Reputation: 515.9
Votes: 118

   
Post Posted: 16-07-2015, 01:37:46 | Translate post to: ... (Click for more languages)

Hmm,vezi asa.
Code:

if (id != ID_SHOWHUD)
{
// Show name, health, class, and ammo packs
set_hudmessage(255, 255, 255, HUD_SPECT_X, HUD_SPECT_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "Armura : %d^n%L %s^nHP: %d - %L %s - %L %d",get_user_armor(id),ID_SHOWHUD, "SPECTATING", g_playername[id], pev(id, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[id])
}
else
{
// Show health, class and ammo packs
set_hudmessage(red, green, blue, HUD_STATS_X, HUD_STATS_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "Armura : %d^n%L: %d - %L %s - %L %d",get_user_armor(ID_SHOWHUD),id,"ZOMBIE_ATTRIB1", pev(ID_SHOWHUD, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[ID_SHOWHUD])
}
}

Tot acolo.



Retired from Amxmodx

1 0
  
Back to top
View user's profile Send private message
Iulian3D

[Mentally Stable]



Status: Offline
(since 04-03-2020 22:38)
Joined: 21 Jun 2015
Posts: 227, Topics: 37
Location: Buftea .

Reputation: 178.8
Votes: 4

   
Post Posted: 16-07-2015, 08:08:38 | Translate post to: ... (Click for more languages)

Îți mulțumesc foarte mult destroi112 acum merge perfect .


Puteți sã dați T/C .

0 0
  
Back to top
View user's profile Send private message

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by -P!C@-, 16 July 2015 06:28



 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Fixed issues  


The time now is 17-08-2025, 18:17:42
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password