User
Pass
2FA
 
 

Problema compilare plugin

 
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 Message3355
Low xDD
[Banned user]


Banned


Status: Offline
(since 25-05-2014 12:50)
Joined: 23 May 2013
Posts: 25, Topics: 5
Location: Romania

Reputation: -27.4
Votes: 10

 
Post Posted: 05-05-2014, 11:58:41 | Translate post to: ... (Click for more languages)

Nu pot sa compilez aceste 2 plugine:

who.sma

Code:
#include <amxmodx>
#include <amxmisc>

#define PLUGIN         "ULTIMATE WHO"
#define VERSION         "1.1"
#define AUTHOR         "P.Of.Pw"

#define CharsMax(%1)      sizeof %1 - 1
#define time_shower      1.0

#define GROUPS_NAME      10
#define GROUPS_ACCESS      10

#define RRR         255
#define GGG         255
#define BBB         255
#define time_hud      12.0

#define motd_msg      "Admin's Online"

#define who_meniu_ad_group_msg   "\y-=[Admin's]=- \r-=[Online]=-^n"
#define who_meniu_admin_msg   "\y-=[Admin's]=- \w-=[Online]=-^n^n"

#define who_meniu_ad_group_msg_bottom   "^n\wPt a iesi apasati \y0 \w sau \y5"
#define who_meniu_admin_msg_bottom   "^n\wPt a iesi apasati \r0 \w sau \r5"

#define   who_console_top      "=========== Jbx.Cs1.Ro Admins ==========="
#define   who_console_bottom    "================================"

new GroupNames[GROUPS_NAME][] = {
   "...::Fondator::...",
   "...::Owner::...",
   "...::Co Owner::...",
   "...::Judecator::...",
   "...::Avocat::...",
   "...::Officer::...",
   "...::Jandarm::...",
   "...::Prisson::...",
   "",
   "",
}

new GroupFlags[GROUPS_ACCESS][] = {
   "abcdefghijklmnopqrstu",
   "bcdefghijklmnopqrstu",
   "bcdefhijklmnopqrsu",
   "bcdefhijklmnopqru",
   "bcdefijlmnopqru",
   "bcdefijmnou",
   "bcdefij",
   "bcdeij",
   "",
   ""
}

new GroupFlagsValue[GROUPS_NAME]

new who_type, who_typemeniu, who_typtable

public plugin_init()
{
   
   register_plugin(PLUGIN, VERSION, AUTHOR)
   
   for(new p_of_pw = 0 ; p_of_pw < GROUPS_NAME ; p_of_pw++)
      GroupFlagsValue[p_of_pw] = read_flags(GroupFlags[p_of_pw])
   
   register_clcmd("say", "cmdSay")
   register_clcmd("say_team", "cmdSay")
   
   who_type   = register_cvar("cmd_who","1")
   who_typemeniu   = register_cvar("who_typemeniu","1")
   who_typtable   = register_cvar("who_typetable","2")
}

public cmdSay(id)
{
   new say[192]
   read_args(say,192)
   if(( containi(say, "who") != -1 || containi(say, "admin") != -1 || containi(say, "admins") != -1  || contain(say, "/who") != -1 || contain(say, "/admin") != -1 || contain(say, "/admins") != -1))
      set_task(time_shower,"cmdULTMWho",id)
   return PLUGIN_CONTINUE
}

public cmdULTMWho(id)
{
   switch(get_pcvar_num(who_type))
   {
      case 1: who_meniu(id)
      
      case 2: who_motd(id)
      
      case 3: who_table(id)
      
      case 4: who_hud(id)
      
      case 5: who_console(id)
      
   }
   return 0
}

who_meniu(id)
{
   switch(get_pcvar_num(who_typemeniu))
   {
      case 1: who_meniu_admin_groups(id)
      
      case 2: who_meniu_admin(id)
   }
   return 0
}
who_meniu_admin_groups(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32]
   new szMenu[256], nLen, keys
   
   nLen = format(szMenu[nLen], 255, who_meniu_ad_group_msg)
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {   
      nLen += format(szMenu[nLen], 255-nLen,"\r%s^n", GroupNames[p_of_pw])
     
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            nLen += format(szMenu[nLen], 255-nLen,"\w%s^n", sName)
         }   
      }
   }
   nLen += format(szMenu[nLen], 255-nLen, who_meniu_ad_group_msg_bottom)
   keys = (1<<0|1<<1|1<<2|1<<3|1<<4|1<<5|1<<6|1<<9)
   show_menu(id,keys,szMenu,-1)
   return 0
}

who_meniu_admin(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32]
   new szMenu[256], nLen, keys
   
   nLen = format(szMenu[nLen], 255, who_meniu_admin_msg)
 
   get_players(sPlayers, iNum, "ch")
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            nLen += format(szMenu[nLen], 255-nLen,"\r%s^n", sName)
         }   
      }
   }
   nLen += format(szMenu[nLen], 255-nLen, who_meniu_admin_msg_bottom)
   keys = (1<<0|1<<1|1<<2|1<<3|1<<4|1<<5|1<<6|1<<9)
   show_menu(id,keys,szMenu,-1)
   return 0
}

who_motd(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {   
      iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h5><font color=^"red^">%s^n</font></h5></center>", GroupNames[p_of_pw])
     
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center>%s^n</center>", sName)
         }
      }      
   }
   show_motd(id, sBuffer, motd_msg)
   return 0

}

who_table(id)
{
   switch(get_pcvar_num(who_typtable))
   {
      case 1: table_style_one(id)
      
      case 2: table_style_two(id)
   }
   return 0
}
table_style_one(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h3><b><font color=^"red^">NUME         -   ACCES</font></h3></b></center>")
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
      
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h4><font color=^"white^">%s      %s^n</font></h4></center>", sName, GroupNames[p_of_pw])
         }
      }      
   }
   show_motd(id, sBuffer, motd_msg)
   return 0
}
table_style_two(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
   
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<html><head><title>a</title></head>")
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<br><br><center><body><table border>")
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<tr><td><h3><b><font color=^"red^">NUME</td><td></h3></b> <h3><b><font color=^"red^">ACCES</td></h3></font></b></center>")
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
      
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><tr><td><h4><b><font color=^"white^">%s<td></b></h4> <h4><b><font color=^"white^">%s </td></h4></font></b></center>", sName, GroupNames[p_of_pw])
         }
      }      
   }
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "</table></body></html>")
   show_motd(id, sBuffer, motd_msg)
   return 0
}

who_hud(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {   
      iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "=== %s ===^n", GroupNames[p_of_pw])
     
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "%s^n", sName)
         }
      }      
   }
   set_hudmessage(RRR, GGG, BBB, 0.02, 0.24, 0, 6.0, time_hud)
   show_hudmessage(id, sBuffer)
   return 0
}

who_console(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32]

   get_players(sPlayers, iNum)
   console_print(id, who_console_top)
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {
         
         iPlayer = sPlayers[a]
         get_user_name(iPlayer, sName, sizeof sName - 1)
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
            console_print(id, "= %d = %s : %s", p_of_pw+1, GroupNames[p_of_pw], sName)
         
         
      }
   }
   console_print(id, who_console_bottom)
   return 0
}




+



vips.sma

Code:
#include <amxmodx>
#include <amxmisc>

#define PLUGIN         "ULTIMATE WHO"
#define VERSION         "1.1"
#define AUTHOR         "P.Of.Pw"

#define CharsMax(%1)      sizeof %1 - 1
#define time_shower      1.0

#define GROUPS_NAME      10
#define GROUPS_ACCESS      10

#define RRR         255
#define GGG         255
#define BBB         255
#define time_hud      12.0

#define motd_msg      "Admini VIP ONLINE"

#define who_meniu_ad_group_msg   "\y-=[Admin's]=- \r-=[VIP]=-^n"
#define who_meniu_admin_msg   "\y-=[Admin's]=- \w-=[VIP]=-^n^n"

#define who_meniu_ad_group_msg_bottom   "^n\wPt a iesi apasati \y0 \w sau \y5"
#define who_meniu_admin_msg_bottom   "^n\wPt a iesi apasati \r0 \w sau \r5"

#define   who_console_top      "=========== Jbx.Cs1.Ro Admins VIP ==========="
#define   who_console_bottom    "================================"

new GroupNames[GROUPS_NAME][] = {
   "...::Fondator VIP::...",
   "...::Owner VIP::...",
   "...::Co Owner VIP::...",
   "...::Judecator VIP::...",
   "...::Avocat VIP::...",
   "...::Officer VIP::...",
   "...::Jandarm VIP::...",
   "...::Prisson VIP::...",
   "...::Slot In teste VIP::..",
   "",
}

new GroupFlags[GROUPS_ACCESS][] = {
   "abcdefghijklmnopqruts",
   "bcdefghijklmnopqrust",
   "bcdefhijklmnopqrsut",
   "bcdefhijkst",
   "bcdefhijklmnopqrust",
   "bcdefijmnoust",
   "bcdefijst",
   "bcdeijst",
   "bst",
   ""
}

new GroupFlagsValue[GROUPS_NAME]

new who_type, who_typemeniu, who_typtable

public plugin_init()
{
   
   register_plugin(PLUGIN, VERSION, AUTHOR)
   
   for(new p_of_pw = 0 ; p_of_pw < GROUPS_NAME ; p_of_pw++)
      GroupFlagsValue[p_of_pw] = read_flags(GroupFlags[p_of_pw])
   
   register_clcmd("say", "cmdSay")
   register_clcmd("say_team", "cmdSay")
   
   who_type   = register_cvar("cmd_who","1")
   who_typemeniu   = register_cvar("who_typemeniu","1")
   who_typtable   = register_cvar("who_typetable","2")
}

public cmdSay(id)
{
   new say[192]
   read_args(say,192)
   if(( containi(say, "who") != -1 || containi(say, "vips") != -1 || containi(say, "vips") != -1  || contain(say, "/vips") != -1 || contain(say, "/admin") != -1 || contain(say, "/admins") != -1))
      set_task(time_shower,"cmdULTMWho",id)
   return PLUGIN_CONTINUE
}

public cmdULTMWho(id)
{
   switch(get_pcvar_num(who_type))
   {
      case 1: who_meniu(id)
      
      case 2: who_motd(id)
      
      case 3: who_table(id)
      
      case 4: who_hud(id)
      
      case 5: who_console(id)
      
   }
   return 0
}

who_meniu(id)
{
   switch(get_pcvar_num(who_typemeniu))
   {
      case 1: who_meniu_admin_groups(id)
      
      case 2: who_meniu_admin(id)
   }
   return 0
}
who_meniu_admin_groups(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32]
   new szMenu[256], nLen, keys
   
   nLen = format(szMenu[nLen], 255, who_meniu_ad_group_msg)
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {   
      nLen += format(szMenu[nLen], 255-nLen,"\r%s^n", GroupNames[p_of_pw])
     
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            nLen += format(szMenu[nLen], 255-nLen,"\w%s^n", sName)
         }   
      }
   }
   nLen += format(szMenu[nLen], 255-nLen, who_meniu_ad_group_msg_bottom)
   keys = (1<<0|1<<1|1<<2|1<<3|1<<4|1<<5|1<<6|1<<9)
   show_menu(id,keys,szMenu,-1)
   return 0
}

who_meniu_admin(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32]
   new szMenu[256], nLen, keys
   
   nLen = format(szMenu[nLen], 255, who_meniu_admin_msg)
 
   get_players(sPlayers, iNum, "ch")
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            nLen += format(szMenu[nLen], 255-nLen,"\r%s^n", sName)
         }   
      }
   }
   nLen += format(szMenu[nLen], 255-nLen, who_meniu_admin_msg_bottom)
   keys = (1<<0|1<<1|1<<2|1<<3|1<<4|1<<5|1<<6|1<<9)
   show_menu(id,keys,szMenu,-1)
   return 0
}

who_motd(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {   
      iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h5><font color=^"red^">%s^n</font></h5></center>", GroupNames[p_of_pw])
     
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center>%s^n</center>", sName)
         }
      }      
   }
   show_motd(id, sBuffer, motd_msg)
   return 0

}

who_table(id)
{
   switch(get_pcvar_num(who_typtable))
   {
      case 1: table_style_one(id)
      
      case 2: table_style_two(id)
   }
   return 0
}
table_style_one(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h3><b><font color=^"red^">NUME         -   ACCES</font></h3></b></center>")
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
      
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><h4><font color=^"white^">%s      %s^n</font></h4></center>", sName, GroupNames[p_of_pw])
         }
      }      
   }
   show_motd(id, sBuffer, motd_msg)
   return 0
}
table_style_two(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   iLen = formatex(sBuffer, sizeof sBuffer - 1, "<body bgcolor=#000000><font color=#7b68ee><pre>")
   
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<html><head><title>a</title></head>")
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<br><br><center><body><table border>")
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<tr><td><h3><b><font color=^"red^">NUME</td><td></h3></b> <h3><b><font color=^"red^">ACCES</td></h3></font></b></center>")
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
      
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "<center><tr><td><h4><b><font color=^"white^">%s<td></b></h4> <h4><b><font color=^"white^">%s </td></h4></font></b></center>", sName, GroupNames[p_of_pw])
         }
      }      
   }
   iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "</table></body></html>")
   show_motd(id, sBuffer, motd_msg)
   return 0
}

who_hud(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32], sBuffer[1024]
   new iLen
   
   get_players(sPlayers, iNum, "ch")
   
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME ; p_of_pw++)
   {   
      iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "=== %s ===^n", GroupNames[p_of_pw])
     
      for(new a = 0; a < iNum ; a++)
      {   
         iPlayer = sPlayers[a]
         
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
         {
            get_user_name(iPlayer, sName, sizeof sName - 1)
            iLen += formatex(sBuffer[iLen], CharsMax(sBuffer) - iLen, "%s^n", sName)
         }
      }      
   }
   set_hudmessage(RRR, GGG, BBB, 0.02, 0.24, 0, 6.0, time_hud)
   show_hudmessage(id, sBuffer)
   return 0
}

who_console(id)
{
   new sPlayers[32], iNum, iPlayer
   new sName[32]

   get_players(sPlayers, iNum)
   console_print(id, who_console_top)
   for(new p_of_pw = 0; p_of_pw < GROUPS_NAME; p_of_pw++)
   {
      for(new a = 0; a < iNum ; a++)
      {
         
         iPlayer = sPlayers[a]
         get_user_name(iPlayer, sName, sizeof sName - 1)
         if(get_user_flags(iPlayer) == GroupFlagsValue[p_of_pw])
            console_print(id, "= %d = %s : %s", p_of_pw+1, GroupNames[p_of_pw], sName)
         
         
      }
   }
   console_print(id, who_console_bottom)
   return 0
}


please help


VAND KEY CS:GO 200 REP
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Happy =]]

[I'm in your mind !]



Status: Offline
(since 02-05-2020 11:17)
Joined: 17 Mar 2012
Posts: 10538, Topics: 450
Location: In mintea ta !

Reputation: 553
Votes: 204

         
Post Posted: 05-05-2014, 15:14:52 | Translate post to: ... (Click for more languages)

who





Pentru orice problema PM.
Nu ofer asistenta in privat.

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Low xDD
[Banned user]


Banned


Status: Offline
(since 25-05-2014 12:50)
Joined: 23 May 2013
Posts: 25, Topics: 5
Location: Romania

Reputation: -27.4
Votes: 10

 
Post Posted: 05-05-2014, 15:18:31 | Translate post to: ... (Click for more languages)

mersi mult happy!!

VAND KEY CS:GO 200 REP
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-05-2014, 15:47:03 | Translate post to: ... (Click for more languages)

vips



Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Low xDD
[Banned user]


Banned


Status: Offline
(since 25-05-2014 12:50)
Joined: 23 May 2013
Posts: 25, Topics: 5
Location: Romania

Reputation: -27.4
Votes: 10

 
Post Posted: 05-05-2014, 16:05:49 | Translate post to: ... (Click for more languages)

vreau cand atunci cand scriu /vips. ,vip sa aparq mord ca.la who.. eu am.modificat who dar nu merge..

VAND KEY CS:GO 200 REP
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-05-2014, 18:09:59 | Translate post to: ... (Click for more languages)

Low xDD wrote:
vreau cand atunci cand scriu /vips. ,vip sa aparq mord ca.la who.. eu am.modificat who dar nu merge..


foloseste limba romana corect, nu am de unde sa ghicesc ce doresti prin "vip sa aparq mord"
ce anume vrei ca nu inteleg. vrei cei cu vip sa apara la moderatori ? ?




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Low xDD
[Banned user]


Banned


Status: Offline
(since 25-05-2014 12:50)
Joined: 23 May 2013
Posts: 25, Topics: 5
Location: Romania

Reputation: -27.4
Votes: 10

 
Post Posted: 05-05-2014, 18:15:46 | Translate post to: ... (Click for more languages)

scuze dar eram pe telefon si ma grabeam

cand scriu /vips sa apara un motd ca la /who dar cu gradele de la vips.sma nu de la.who.sma

dar la vips sa fie un motd aparte de who


@edutz


VAND KEY CS:GO 200 REP
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-05-2014, 18:23:41 | Translate post to: ... (Click for more languages)

ok ... ce litere are vip-ul ???

trebuie sa intelegi ca la vips trebuie sa ai grade separate.
eu ce ti-am compilat acolo sunt exact gradele puse de tine, dar nu inseamna ca merge decat daca este exact ce are vipul pe serverul tau.
iti sfatuiesc sa te faci rand pe rand vip cu cate un grad, sa intri pe server si sa dai amx_who (cel original) si sa vezi ce litere ai. doar asa poti fi sigur. de acolo poti edita chiar tu pluginul sau ne poti lasa accesele aici si te rezolv.




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Low xDD
[Banned user]


Banned


Status: Offline
(since 25-05-2014 12:50)
Joined: 23 May 2013
Posts: 25, Topics: 5
Location: Romania

Reputation: -27.4
Votes: 10

 
Post Posted: 05-05-2014, 18:44:33 | Translate post to: ... (Click for more languages)

deci eu am pus la /who sa apara fondator, owner etc FARA VIP.
Am pus pluginul vips pe sv dar cand scriu /vips nu apare motd-ul ca la who.

deci la vips sa apara fondator+vip ,owner+vip etc .. flagurile sa fie la fel ca la primul who dar cu flagul "s" dupa acele flaguri.

deci daca ai fondator +vip apari doar la /vips nu si la who.
am users.ini unde trec adminii fara vip si vips.ini unde trec adminii+vip

@edutz daca imi faci dau 10rep ca imi da cineva.


VAND KEY CS:GO 200 REP
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-05-2014, 19:26:33 | Translate post to: ... (Click for more languages)

da-mi add pe zm2.goldmember si zi-mi ca esti tu cu problema asta. trebuie sa ma uit mai atent la ce ai tu acolo, altfel nu avem cum, explicatia ta e alambicata.



Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Low xDD
[Banned user]


Banned


Status: Offline
(since 25-05-2014 12:50)
Joined: 23 May 2013
Posts: 25, Topics: 5
Location: Romania

Reputation: -27.4
Votes: 10

 
Post Posted: 05-05-2014, 19:38:18 | Translate post to: ... (Click for more languages)

DECI SA IMI FACI UN WHO DAR CAND SCRIU /VIPS SA IMI APARA ADMINII+VIP CU FLAGURILE DE MAI SUS DE LA VIPS.SMA [UN MOTD]


SI UN ALT WHO ,CAND SCRIU /WHO SA APARA ADMINII FARA VIP [MOTD]

@edutz


 
Staff message (Happy =]]):
 
Nu mai fa exces de majuscule.



VAND KEY CS:GO 200 REP
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-05-2014, 22:01:16 | Translate post to: ... (Click for more languages)

deci pentru /who deja ai pluginul de mai sus, deja compilat, merge etc.
tu vrei la /vips sa mearga la fel ca si pluginul de /who dar (aici nu inteleg deiferenta) ...
momentan ce iti arata asa cum e acum ?
vrei sa iti arate adminii+vipii inseamna ca mai trebuie adaugat

#define GROUPS_NAME 10
#define GROUPS_ACCESS 10

----->

#define GROUPS_NAME 17
#define GROUPS_ACCESS 17

si

new GroupNames[GROUPS_NAME][] = {
"...::Fondator::...",
"...::Owner::...",
"...::Co Owner::...",
"...::Judecator::...",
"...::Avocat::...",
"...::Officer::...",
"...::Jandarm::...",
"...::Prisson::...",
"",
"",
}

-------->

new GroupNames[GROUPS_NAME][] = {
"...::Fondator::...",
"...::Owner::...",
"...::Co Owner::...",
"...::Judecator::...",
"...::Avocat::...",
"...::Officer::...",
"...::Jandarm::...",
"...::Prisson::...",
"...::Fondator VIP::...",
"...::Owner VIP::...",
"...::Co Owner VIP::...",
"...::Judecator VIP::...",
"...::Avocat VIP::...",
"...::Officer VIP::...",
"...::Jandarm VIP::...",
"...::Prisson VIP::...",
"...::Slot In teste VIP::..",
}


iar


new GroupFlags[GROUPS_ACCESS][] = {
"abcdefghijklmnopqrstu",
"bcdefghijklmnopqrstu",
"bcdefhijklmnopqrsu",
"bcdefhijklmnopqru",
"bcdefijlmnopqru",
"bcdefijmnou",
"bcdefij",
"bcdeij",
"",
""
}


--------------------->

new GroupFlags[GROUPS_ACCESS][] = {
"abcdefghijklmnopqrstu",
"bcdefghijklmnopqrstu",
"bcdefhijklmnopqrsu",
"bcdefhijklmnopqru",
"bcdefijlmnopqru",
"bcdefijmnou",
"bcdefij",
"bcdeij,
"abcdefghijklmnopqrstu",
"bcdefghijklmnopqrstu",
"bcdefhijklmnopqrsu",
"bcdefhijklmnopqru",
"bcdefijlmnopqru",
"bcdefijmnou",
"bcdefij",
"bcdeij",
"bij""

}

de aia te-am rugat sa-mi dai add, e destul de dificil sa te ajut prin forum cand ceea ce vrei tu nu e destul de clar ...




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
[Elyps]
[Banned user]


Banned


Status: Offline
(since 21-06-2014 07:47)
Joined: 04 May 2014
Posts: 40, Topics: 8
Location: Romania

Reputation: -17.9
Votes: 16

Post Posted: 06-05-2014, 20:53:09 | Translate post to: ... (Click for more languages)

El vrea sa ii faci o comanda si cand scrii /vips sa ii apara vip-ii online ,nu si adminii fara vip intrun motd ca la who.

 
Staff message (Alexandru P):
 
Citeste regulamentul forumului, postezi inutil si s-ar putea sa il consider post-huntig. Vei fi sanctionat daca nu te conformezi.


0 0
  
Back to top
View user's profile Send private message
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 26-04-2024, 15:24:21
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password


This message appears only once, so
like us now until it's too late ! :D
x