AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Off-Topic (https://forums.alliedmods.net/forumdisplay.php?f=15)
-   -   Need help!! (https://forums.alliedmods.net/showthread.php?t=254288)

HamletEagle 01-03-2015 06:00

Re: Need help!!
 
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 


zmd94 01-03-2015 06:13

Re: Need help!!
 
I don't know that. Nice explanation, HamletEagle.

HamletEagle 01-03-2015 07:29

Re: Need help!!
 
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 


HamletEagle 01-03-2015 13:52

Re: Need help!!
 
What ? I've already answered your question.

s@ch 01-05-2015 08:42

Re: Need help!!
 
thank you :)

s@ch 01-19-2015 08:21

Re: Need help!!
 
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

zmd94 01-19-2015 08:30

Re: Need help!!
 
http://www.amxmodx.org/api/amxmodx/set_task

s@ch 01-20-2015 05:22

Re: Need help!!
 
@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??

zmd94 01-20-2015 05:39

Re: Need help!!
 
http://www.amxmodx.org/api/amxmodx/get_user_frags

HamletEagle 01-20-2015 12:11

Re: Need help!!
 
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.


All times are GMT -4. The time now is 02:49.

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