AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   How do you "Index an array"? (https://forums.alliedmods.net/showthread.php?t=10567)

Extremeone 02-23-2005 11:26

How do you "Index an array"?
 
how do i index
Code:

gHasAnubisPowers
Code:
#include <amxmodx> #include <engine> #include <fun> #include <superheromod> new bool:gHasAnubisPowers [32] new gmsgSayText //---------------------------------------------------------------------------------------------- public plugin_init() {     register_plugin("SUPERHERO Anubis","1.17.5","AssKicR/JTP10181")     register_cvar("anibus_showdamage", "1")         register_event("ResetHUD","anubis_newround","b")         register_srvcmd("anubis_init", "anubis_init")         register_event("Damage", "damage_msg", "b", "2!0", "3=0", "4!0")         register_clcmd("say", "handle_say")     register_clcmd("say_team", "handle_say")         gmsgSayText = get_user_msgid("SayText") } //---------------------------------------------------------------------------------------------- public anubis_init() {     {         if (get_user_flags & ADMIN_BAN)  {             (gHasAnubisPowers) = true     }     else     {             (gHasAnubisPowers) = false     }     new temp[6]     read_argv(1,temp,5)     read_argv(2,temp,5) } public handle_say(id) {     new command[10],players[SH_MAXSLOTS]     new message[191],name[33], player_count     new teamname[5], sMessage[191]     read_argv(0, command, 16)     read_argv(1, message, 190)     if (equal(message,"") || equal(message,"[")) return PLUGIN_CONTINUE     new id = str_to_num(temp)     new is_alive = is_user_alive(id)     new team = get_user_team(id)     new isSayTeam = equal(command, "say_team")     get_user_name(id, name, 33)     if (team == 1) copy(teamname,4,"(T)")     else if (team == 2)    copy(teamname,4,"(CT)")     format(sMessage,190, "%c[DN]%s%s%s :  %s^n", 2,  isSayTeam ? teamname : "", is_alive ? "*ALIVE*" : "*DEAD*", name, message)     get_players(players, player_count, "c")     for (new i = 0; i < player_count; i++) {         if (gHasAnubisPowers[players[i]] && is_user_connected(players[i])) {             if (is_user_alive(players[i]) && !is_alive || isSayTeam && team != get_user_team(players[i])) {                 message_begin(MSG_ONE,gmsgSayText,{0,0,0},players[i])                 write_byte(id)                 write_string(sMessage)                 message_end()             }         }     }     return PLUGIN_CONTINUE } //---------------------------------------------------------------------------------------------- public anubis_speak_on(id) {     SetSpeak(id, SPEAK_LISTENALL) } //---------------------------------------------------------------------------------------------- public anubis_speak_off(id) {     SetSpeak(id, SPEAK_NORMAL) } //---------------------------------------------------------------------------------------------- public damage_msg(vIndex) {     if (!is_user_connected(vIndex)) return PLUGIN_CONTINUE     if ( get_cvar_num("anibus_showdamage") ) {         new aIndex = get_user_attacker(vIndex)         if ( aIndex <= 0 || aIndex > SH_MAXSLOTS ||vIndex <= 0 || vIndex > SH_MAXSLOTS  || vIndex == aIndex ) return PLUGIN_CONTINUE         new damage = read_data(2)         if ( is_user_alive(aIndex))  {             set_hudmessage(0, 100, 200, -1.0, 0.55, 2, 0.1, 2.0, 0.02, 0.02, 74)             show_hudmessage(aIndex,"%i", damage)         }         if ( is_user_alive(vIndex)) {             set_hudmessage(200, 0, 0, -1.0, 0.48, 2, 0.1, 2.0, 0.02, 0.02, 76)             show_hudmessage(vIndex,"%i", damage)         }     }     return PLUGIN_CONTINUE } //---------------------------------------------------------------------------------------------- public client_connect(id) {    (gHasAnubisPowers[id]) = true } public client_disconnect(id) {    (gHasAnubisPowers[id]) = false } //----------------------------------------------------------------------------------------------

Extremeone 02-23-2005 11:33

nvm i fixed it i changed this
Code:
{     {         if (get_user_flags & ADMIN_BAN)  {             (gHasAnubisPowers) = true     }     else     {             (gHasAnubisPowers) = false     }

to this
Code:
{     {         if (get_user_flags & ADMIN_BAN)  {             (gHasAnubisPowers [32]) = true     }     else     {             (gHasAnubisPowers [32]) = false     }


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

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