User
Pass
2FA
 
 

[REZOLVAT]cerere motd

 
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) -> Plugins - Help / Support
Author Message945
luis1

[Mentally Stable]



Status: Offline
(since 16-12-2017 17:06)
Joined: 28 Aug 2017
Posts: 20, Topics: 7
Location: Romania

Reputation: 20.9
Votes: 1

Post Posted: 28-08-2017, 16:26:51 | Translate post to: ... (Click for more languages)

am aici un plugin numit preturi ranguri admin, eu am incercat sami fac un motd dar nu imi merge cand il bag in amxmodx/configs , intru pe server scriu /beneficii imi apare asta : http://imgur.com/a/Kt3b4

Eu vreau sa-mi apara asa cand scriu /beneficii pe chat : http://imgur.com/a/clJpE

aici e motd : http://www.girlshare.ro/3489916653.3

sau
Spoiler:

0 0
  
Back to top
View user's profile Send private message
GoreSpintecatoru.

[Inactiv o perioada]



Status: Offline
(since 09-11-2017 19:29)
Joined: 18 Feb 2017
Posts: 638, Topics: 28
Location: Romania

Reputation: 762.7
Votes: 40

       
Post Posted: 28-08-2017, 16:38:57 | Translate post to: ... (Click for more languages)

Spoiler:
- Corectarea de cod .

Pluginu functioneaza, esti sigur ca ai bagat bine?
Trebuie sa bagi in /configs cu numele preturi_ranguri_motd.html


Regulament|My Official Website[V:1.1]|Panel JB[V:1.0]

0 0
  
Back to top
View user's profile Send private message
luis1

[Mentally Stable]



Status: Offline
(since 16-12-2017 17:06)
Joined: 28 Aug 2017
Posts: 20, Topics: 7
Location: Romania

Reputation: 20.9
Votes: 1

Post Posted: 28-08-2017, 16:44:19 | Translate post to: ... (Click for more languages)

aaa da numele trebuia sa modific ms mult

imi poti scoate mesajul asta din acest plugin "Afla cum poti transfera bani scriind /help"? se numeste give money si apare sus pe ecran si nu-mi place pls

https://www.extreamcs.com/forum/pluginuri-extream/give-money-t52030.html aici e

0 0
  
Back to top
View user's profile Send private message
GoreSpintecatoru.

[Inactiv o perioada]



Status: Offline
(since 09-11-2017 19:29)
Joined: 18 Feb 2017
Posts: 638, Topics: 28
Location: Romania

Reputation: 762.7
Votes: 40

       
Post Posted: 28-08-2017, 19:01:31 | Translate post to: ... (Click for more languages)

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

#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <alt_chat.inc>

#define PLUGIN "GiveMoney"
#define VERSION "1.0"
#define AUTHOR "crazy.cipry"

new g_Sync;

public plugin_init() {
   register_plugin(PLUGIN, VERSION, AUTHOR);
   register_clcmd("say", "hook_say");
   register_clcmd("say_team", "hook_say");
   register_clcmd("amx_give", "give_money");
   register_clcmd("say /help", "help_motd");
   
   
   g_msgsaytext = get_user_msgid( "SayText" );
   g_Sync = CreateHudSyncObj(0);
   
}


public hook_say(id) {
   static s_Args[32]
   
   read_args(s_Args, sizeof(s_Args) - 1);
   remove_quotes(s_Args);
   
   if(equal(s_Args, "/give", 5)) {
      replace(s_Args, sizeof(s_Args) - 1, "/", "");
      client_cmd(id, "amx_%s", s_Args);
   }
   
   return PLUGIN_CONTINUE;
}

public give_money(id) {
   new s_Arg1[32], s_Arg2[6];
   
   read_argv(1, s_Arg1, 31);
   read_argv(2, s_Arg2, 5);
   
   new iTarget = cmd_target(id, s_Arg1, 8);
   new iAmmount = str_to_num(s_Arg2);
   
   if(iTarget == id) {
      print(id, "^x03 Nu poti sa-ti dai bani tie");
      return PLUGIN_HANDLED;
   }
      
   
   if(!iTarget) {
      print(id, "^x03 Acest user nu exista");
      return PLUGIN_HANDLED;
   }
   
   new iCurrentMoney = cs_get_user_money(id);
   
   if(iAmmount<=0) {
      print(id, "^x03 Nu poti sa dai o suma negativa sau egala cu 0");
      return PLUGIN_HANDLED;
   }
      
   
   if(iAmmount > iCurrentMoney){
      print(id, "^x03 Nu poti sa dai mai multi bani decat ai");
      return PLUGIN_HANDLED;
   }
   
   new iFinalMoney;
   iFinalMoney = iCurrentMoney - iAmmount;
   
   cs_set_user_money(id, iFinalMoney, 1);
   
   new iTargetName[32], iName[32];
   get_user_name(iTarget, iTargetName, 31);
   get_user_name(id, iName, 31);
   
   print(id, "^x03 I-ai dat lui ^x04%s ^x03suma de ^x04%d$", iTargetName, iAmmount);
   
   new iTargetFinalMoney, iTargetCurrMoney;
   
   iTargetCurrMoney = cs_get_user_money(iTarget)
   iTargetFinalMoney = iTargetCurrMoney + iAmmount;
   
   cs_set_user_money(iTarget, iTargetFinalMoney, 1);
   
   print(iTarget, "^x03 Ai primit de la ^x04%s ^x03suma de ^x04%d$", iName, iAmmount);
   
   return PLUGIN_CONTINUE;
   
}

public help_motd(id) {
   new iMotd[650], iLen;
   
   iLen = formatex(iMotd, sizeof iMotd - 1,"<body bgcolor=#000000><font color=33FF00><pre>");
   iLen += formatex(iMotd[iLen], (sizeof iMotd - 1) - iLen, "<center><b><font color=#FF0033>Cum sa dai bani unui jucator?</b></font></center>^n^n^n");
   iLen += formatex(iMotd[iLen], (sizeof iMotd - 1) - iLen, "Pentru a da bani unui user folositi in chat comanda^n^n^n^n");
   iLen += formatex(iMotd[iLen], (sizeof iMotd - 1) - iLen, "<center><b><font color=#0000FF>/give nume suma</font></b></center>^n^n^n^n^n^n");
   iLen += formatex(iMotd[iLen], (sizeof iMotd - 1) - iLen, "<center><b><font color=#FFFF00>&copy<font> <font color=FF0033>crazy.cipry</font> <font color=#FFFF00>2009<font></b></center>");
   
   show_motd(id, iMotd, "Help");
   
}
   
   
   
   
   
   
   


Regulament|My Official Website[V:1.1]|Panel JB[V:1.0]

0 0
  
Back to top
View user's profile Send private message
luis1

[Mentally Stable]



Status: Offline
(since 16-12-2017 17:06)
Joined: 28 Aug 2017
Posts: 20, Topics: 7
Location: Romania

Reputation: 20.9
Votes: 1

Post Posted: 28-08-2017, 21:15:14 | Translate post to: ... (Click for more languages)

ms frumos
0 0
  
Back to top
View user's profile Send private message
GoreSpintecatoru.

[Inactiv o perioada]



Status: Offline
(since 09-11-2017 19:29)
Joined: 18 Feb 2017
Posts: 638, Topics: 28
Location: Romania

Reputation: 762.7
Votes: 40

       
Post Posted: 28-08-2017, 21:56:40 | Translate post to: ... (Click for more languages)

Rezolvat?

Regulament|My Official Website[V:1.1]|Panel JB[V:1.0]

0 0
  
Back to top
View user's profile Send private message
luis1

[Mentally Stable]



Status: Offline
(since 16-12-2017 17:06)
Joined: 28 Aug 2017
Posts: 20, Topics: 7
Location: Romania

Reputation: 20.9
Votes: 1

Post Posted: 29-08-2017, 09:17:41 | Translate post to: ... (Click for more languages)

da
0 0
  
Back to top
View user's profile Send private message

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by GoreSpintecatoru., 29 August 2017 08:12



 
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) -> Plugins - Help / Support  


The time now is 02-03-2025, 03:52:48
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password