Raised This Month: $51 Target: $400
 12% 

CS 1.6 plugin request


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Mikk3434
New Member
Join Date: Apr 2015
Old 04-08-2015 , 06:21   CS 1.6 plugin request
Reply With Quote #1

Hi.
I'm requesting this plugin, maybe someone has it or knows where can i get it?

Mängija Mikk andmed = Player Mikk information
Tapmised = Kills
Surmad = Deaths
Rank = rank
Aitäh, et mängite meie serveris! = Thanks for playing our server.
Mikk3434 is offline
Obada
Senior Member
Join Date: Dec 2014
Location: Abu Dhabi
Old 04-08-2015 , 09:49   Re: CS 1.6 plugin request
Reply With Quote #2

Is it toggleable or permanent?
Obada is offline
Mikk3434
New Member
Join Date: Apr 2015
Old 04-08-2015 , 12:25   Re: CS 1.6 plugin request
Reply With Quote #3

Quote:
Originally Posted by Obada View Post
Is it toggleable or permanent?
Permanent.
Mikk3434 is offline
Kz1.0
Senior Member
Join Date: Jan 2013
Location: Vietnam
Old 04-09-2015 , 03:57   Re: CS 1.6 plugin request
Reply With Quote #4

PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <csstats>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"

#define t1d 77273

new g_iSync

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
g_iSync CreateHudSyncObj()
}

public 
client_putinserver(idset_task(1.0"hud"t1d+id__"b")
public 
client_disconnect(id) if (task_exists(t1d+id)) remove_task(t1d+id)

public 
hud(taskid)
{
    new 
id taskid t1d
    
new szName[33]; get_user_name(idszNamecharsmax(szName))
    new 
iKill get_user_frags(id)
    new 
iDeath cs_get_user_deaths(id)
    new 
stats[8], bodyhits[8], iRank get_user_stats(idstatsbodyhits)
    new 
iMaxRank get_statsnum()
    
    static 
szHud[128]
    
formatex(szHudcharsmax(szHud), "Player %s Information^n^nKills : %i^nDeaths : %i^n^nRank : %i/%i^nThanks for playing in our server!",
    
szNameiKilliDeathiRankiMaxRank)
    
    
set_hudmessage(02552550.010.1700.01.1)
    
ShowSyncHudMsg(idg_iSyncszHud)


Last edited by Kz1.0; 04-09-2015 at 03:57.
Kz1.0 is offline
Mikk3434
New Member
Join Date: Apr 2015
Old 04-09-2015 , 04:42   Re: CS 1.6 plugin request
Reply With Quote #5

Quote:
Originally Posted by Kz1.0 View Post
PHP Code:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <csstats>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"

#define t1d 77273

new g_iSync

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
g_iSync CreateHudSyncObj()
}

public 
client_putinserver(idset_task(1.0"hud"t1d+id__"b")
public 
client_disconnect(id) if (task_exists(t1d+id)) remove_task(t1d+id)

public 
hud(taskid)
{
    new 
id taskid t1d
    
new szName[33]; get_user_name(idszNamecharsmax(szName))
    new 
iKill get_user_frags(id)
    new 
iDeath cs_get_user_deaths(id)
    new 
stats[8], bodyhits[8], iRank get_user_stats(idstatsbodyhits)
    new 
iMaxRank get_statsnum()
    
    static 
szHud[128]
    
formatex(szHudcharsmax(szHud), "Player %s Information^n^nKills : %i^nDeaths : %i^n^nRank : %i/%i^nThanks for playing in our server!",
    
szNameiKilliDeathiRankiMaxRank)
    
    
set_hudmessage(02552550.010.1700.01.1)
    
ShowSyncHudMsg(idg_iSyncszHud)

/tmp/textwU06ep.sma(10) : error 017: undefined symbol "register_plugin"
/tmp/textwU06ep.sma(12) : error 017: undefined symbol "CreateHudSyncObj"
/tmp/textwU06ep.sma(15) : error 017: undefined symbol "set_task"
/tmp/textwU06ep.sma(16) : error 017: undefined symbol "task_exists"
/tmp/textwU06ep.sma(16) : error 017: undefined symbol "remove_task"
/tmp/textwU06ep.sma(21) : error 017: undefined symbol "get_user_name"
/tmp/textwU06ep.sma(22) : error 017: undefined symbol "get_user_frags"
/tmp/textwU06ep.sma(23) : error 017: undefined symbol "cs_get_user_deaths"
/tmp/textwU06ep.sma(24) : error 017: undefined symbol "get_user_stats"
/tmp/textwU06ep.sma(25) : error 017: undefined symbol "get_statsnum"
/tmp/textwU06ep.sma(2 : error 017: undefined symbol "formatex"
/tmp/textwU06ep.sma(31) : error 017: undefined symbol "set_hudmessage"
/tmp/textwU06ep.sma(32) : error 017: undefined symbol "ShowSyncHudMsg"
/tmp/textwU06ep.sma(34) : warning 204: symbol is assigned a value that is never used: "g_iSync"
Mikk3434 is offline
Kz1.0
Senior Member
Join Date: Jan 2013
Location: Vietnam
Old 04-09-2015 , 04:51   Re: CS 1.6 plugin request
Reply With Quote #6

How did you compile it ?
Download AMX Mod X 1.8.2 and recompile.

Or use this web compiler: https://www.amxmodx.org/webcompiler.cgi

Last edited by Kz1.0; 04-09-2015 at 04:52.
Kz1.0 is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 04-09-2015 , 05:32   Re: CS 1.6 plugin request
Reply With Quote #7

It is better to use local compiler.
zmd94 is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 04-12-2015 , 19:49   Re: CS 1.6 plugin request
Reply With Quote #8

Works just fine for me
Krtola is offline
Send a message via Skype™ to Krtola
YousufKhan2003
Junior Member
Join Date: Nov 2019
Location: Pakistan, Karachi
Old 11-03-2019 , 06:36   Re: CS 1.6 plugin request
Reply With Quote #9

Hi !!
My Account Was New In AlliedModders
I Need Cs 1.6 Base Builder HeRo Shop Plugin
[Req] Details About Plugin..
Name Plugin : BB_Hero_Shop.amxx
Title : HeRo Humans Shop , HeRo Zombies Shop
Options :
1. Humans Items
2. Zombies Items
HeRo Human Items :
1. AK47 | 2300$
2. M4A1 | 2000$
3. FAMAS | 2000$
4. M249 MachineGun | 12000$
5. G3SG1 Sniper | 12000$
0. Exit

HeRo Zombie Items :
1. [300 HP] | 1000$
2. [500 HP] | 1500$
3. [1000 HP] | 2500$
4. [2000 HP] | 5000$
0. Exit
YousufKhan2003 is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 11-03-2019 , 16:13   Re: CS 1.6 plugin request
Reply With Quote #10

Quote:
Originally Posted by YousufKhan2003 View Post
Hi !!
My Account Was New In AlliedModders
I Need Cs 1.6 Base Builder HeRo Shop Plugin
[Req] Details About Plugin..
Name Plugin : BB_Hero_Shop.amxx
Title : HeRo Humans Shop , HeRo Zombies Shop
Options :
1. Humans Items
2. Zombies Items
HeRo Human Items :
1. AK47 | 2300$
2. M4A1 | 2000$
3. FAMAS | 2000$
4. M249 MachineGun | 12000$
5. G3SG1 Sniper | 12000$
0. Exit

HeRo Zombie Items :
1. [300 HP] | 1000$
2. [500 HP] | 1500$
3. [1000 HP] | 2500$
4. [2000 HP] | 5000$
0. Exit
New or not, I don't see how you decided that using a 4 year old thread to post a completely different request is smart.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:04.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode