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

Need help!!


Post New Thread Reply   
 
Thread Tools Display Modes
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 01-03-2015 , 06:00   Re: Need help!!
Reply With Quote #11

Please use php tags around the code, it's hard to read as you wrote it. You should do it if you need in your plugin.
Not a fixed usage.

It's the same as swapping two variables values
PHP Code:
new var = 5
new var2 6
new aux
aux 
= var
var = 
var2
var2 
aux

//Now var is 6 and var 2 is 5 
__________________

Last edited by HamletEagle; 01-03-2015 at 06:02.
HamletEagle is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 01-03-2015 , 06:13   Re: Need help!!
Reply With Quote #12

I don't know that. Nice explanation, HamletEagle.
zmd94 is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 01-03-2015 , 07:29   Re: Need help!!
Reply With Quote #13

Not a big deal, you save the first one value, you make the first one equal to the last one and then the last one equal to the value that you saved at first step. This is because when you do var = var2 you loose var value and doing var2 = var will make both of them to have the same value as it was in var2.

PHP Code:
new var = 5
new var2 6
new aux
aux 
= var //now aux is 5
var = var2 //now var is 6
var2 aux//now var2 is 5 
__________________

Last edited by HamletEagle; 01-03-2015 at 07:30.
HamletEagle is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 01-03-2015 , 13:52   Re: Need help!!
Reply With Quote #14

What ? I've already answered your question.
__________________
HamletEagle is offline
s@ch
New Member
Join Date: Nov 2014
Old 01-05-2015 , 08:42   Re: Need help!!
Reply With Quote #15

thank you
s@ch is offline
s@ch
New Member
Join Date: Nov 2014
Old 01-19-2015 , 08:21   Re: Need help!!
Reply With Quote #16

PHP Code:
if(get_cvar_num("sv_rsadvertise") == 1)
    {
        
set_task(adtime"advertise"___"b")
    } 
PHP Code:
#include <amxmodx>

#define PLUGIN     "c4 timer"
#define VERSION "1.1"
#define AUTHOR     "cheap_suit"

new g_c4timer
new mp_c4timer

new cvar_showteam
new cvar_flash
new cvar_sprite
new cvar_msg

new g_msg_showtimer
new g_msg_roundtime
new g_msg_scenario

#define MAX_SPRITES    2
new const g_timersprite[MAX_SPRITES][] = { "bombticking""bombticking1" }
new const 
g_message[] = "Detonation time intiallized....."

public plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
register_cvar(PLUGINVERSIONFCVAR_SPONLY|FCVAR_SERVER)

    
cvar_showteam     register_cvar("amx_showc4timer""3")
    
cvar_flash     register_cvar("amx_showc4flash""0")
    
cvar_sprite     register_cvar("amx_showc4sprite""1")
    
cvar_msg     register_cvar("amx_showc4msg""0")
    
mp_c4timer     get_cvar_pointer("mp_c4timer")

    
g_msg_showtimer    get_user_msgid("ShowTimer")
    
g_msg_roundtime    get_user_msgid("RoundTime")
    
g_msg_scenario    get_user_msgid("Scenario")
    
    
register_event("HLTV""event_hltv""a""1=0""2=0")
    
register_logevent("logevent_plantedthebomb"3"2=Planted_The_Bomb")
}

public 
event_hltv()
    
g_c4timer get_pcvar_num(mp_c4timer)

public 
logevent_plantedthebomb()
{
    new 
showtteam get_pcvar_num(cvar_showteam)
    
    static 
players[32], numi
    
switch(showtteam)
    {
        case 
1get_players(playersnum"ace""TERRORIST")
        case 
2get_players(playersnum"ace""CT")
        case 
3get_players(playersnum"ac")
        default: return
    }
    for(
0num; ++iset_task(1.0"update_timer"players[i])
}

public 
update_timer(id)
{
    
message_begin(MSG_ONE_UNRELIABLEg_msg_showtimer_id)
    
message_end()
    
    
message_begin(MSG_ONE_UNRELIABLEg_msg_roundtime_id)
    
write_short(g_c4timer)
    
message_end()
    
    
message_begin(MSG_ONE_UNRELIABLEg_msg_scenario_id)
    
write_byte(1)
    
write_string(g_timersprite[clamp(get_pcvar_num(cvar_sprite), 0, (MAX_SPRITES 1))])
    
write_byte(150)
    
write_short(get_pcvar_num(cvar_flash) ? 20 0)
    
message_end()
    
    if(
get_pcvar_num(cvar_msg))
    {
        
set_hudmessage(25518000.440.8726.06.0)
        
show_hudmessage(idg_message)
    }

Hii guys..can you tell me the use of the above ??...i know i am asking too much..but i need you guys help

Last edited by s@ch; 01-19-2015 at 08:32.
s@ch is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 01-19-2015 , 08:30   Re: Need help!!
Reply With Quote #17

http://www.amxmodx.org/api/amxmodx/set_task
zmd94 is offline
s@ch
New Member
Join Date: Nov 2014
Old 01-20-2015 , 05:22   Re: Need help!!
Reply With Quote #18

@zmd94 how to get a players score i mean.... i want an if statement like this

PHP Code:
if("player gets a specified score"
is there any statement/i don't knw what to call it...to retrieve the players score??
s@ch is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 01-20-2015 , 05:39   Re: Need help!!
Reply With Quote #19

http://www.amxmodx.org/api/amxmodx/get_user_frags
zmd94 is offline
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 01-20-2015 , 12:11   Re: Need help!!
Reply With Quote #20

Call it a native, since most of the functions that we use are called natives(if they come from another plugin or module).

You should search on the forum before asking simple questions, I mean, you will find the answer easier.
__________________
HamletEagle is offline
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 11:27.


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