User
Pass
2FA
 
 

[rezolvat]Plugin intrare server

 
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 Message2428
DarkJB
[Banned user]


Banned


Status: Offline
(since 27-11-2014 09:08)
Joined: 18 Aug 2014
Posts: 79, Topics: 25
Location: Romania

Reputation: -34.1
Votes: 4

Post Posted: 29-08-2014, 16:53:13 | Translate post to: ... (Click for more languages)

Imi puteti da plugin-ul acela,cand te conectezi/descarci resurse pe server sa sea uda o melodie?

Fondator pincipal:Fury.Freakz.Ro
0 0
  
Back to top
View user's profile Send private message
[TH]George.
[Banned user]


Banned


Status: Offline
(since 30-08-2014 06:10)
Joined: 22 Aug 2014
Posts: 171, Topics: 25
Location: Romania

Reputation: -8.4
Votes: 9

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

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "fantasy"

new const sound[] = "sound/misc/mdfk1.mp3";

public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)

}

public client_connect(id){
client_cmd( id, "mp3 play %s", sound );

}

public plugin_precache()
{
precache_generic( sound );
}

acolo la sound/misc/ modifici melodia.

0 0
  
Back to top
View user's profile Send private message
DarkJB
[Banned user]


Banned


Status: Offline
(since 27-11-2014 09:08)
Joined: 18 Aug 2014
Posts: 79, Topics: 25
Location: Romania

Reputation: -34.1
Votes: 4

Post Posted: 29-08-2014, 18:29:01 | Translate post to: ... (Click for more languages)

Nu merge.Am pus tot acolo,mi se descarca melodia,dar nu se aude.

Fondator pincipal:Fury.Freakz.Ro
0 0
  
Back to top
View user's profile Send private message
[TH]George.
[Banned user]


Banned


Status: Offline
(since 30-08-2014 06:10)
Joined: 22 Aug 2014
Posts: 171, Topics: 25
Location: Romania

Reputation: -8.4
Votes: 9

 
Post Posted: 29-08-2014, 18:54:39 | Translate post to: ... (Click for more languages)

merge , e .wav ? sau .mp3 ?
0 0
  
Back to top
View user's profile Send private message
DarkJB
[Banned user]


Banned


Status: Offline
(since 27-11-2014 09:08)
Joined: 18 Aug 2014
Posts: 79, Topics: 25
Location: Romania

Reputation: -34.1
Votes: 4

Post Posted: 29-08-2014, 19:28:21 | Translate post to: ... (Click for more languages)

Tie ti se aude? (Fury.Freakz.Ro)

Fondator pincipal:Fury.Freakz.Ro
0 0
  
Back to top
View user's profile Send private message
[TH]George.
[Banned user]


Banned


Status: Offline
(since 30-08-2014 06:10)
Joined: 22 Aug 2014
Posts: 171, Topics: 25
Location: Romania

Reputation: -8.4
Votes: 9

 
Post Posted: 29-08-2014, 19:58:19 | Translate post to: ... (Click for more languages)

Eu te-am intrebat altceva, e mp3 sau wav? plugin-ul suporta doar .mp3.
0 0
  
Back to top
View user's profile Send private message
DarkJB
[Banned user]


Banned


Status: Offline
(since 27-11-2014 09:08)
Joined: 18 Aug 2014
Posts: 79, Topics: 25
Location: Romania

Reputation: -34.1
Votes: 4

Post Posted: 29-08-2014, 20:40:37 | Translate post to: ... (Click for more languages)

E mp3

Fondator pincipal:Fury.Freakz.Ro
0 0
  
Back to top
View user's profile Send private message
[TH]George.
[Banned user]


Banned


Status: Offline
(since 30-08-2014 06:10)
Joined: 22 Aug 2014
Posts: 171, Topics: 25
Location: Romania

Reputation: -8.4
Votes: 9

 
Post Posted: 29-08-2014, 20:42:06 | Translate post to: ... (Click for more languages)

Nu e buna melodia , de ex: pe serverul meu acum 5 minute am pus pluginu asta + melodia si merge.

Melodia poate iti merge in media player, dar pe sv nu iti merge

0 0
  
Back to top
View user's profile Send private message
DarkJB
[Banned user]


Banned


Status: Offline
(since 27-11-2014 09:08)
Joined: 18 Aug 2014
Posts: 79, Topics: 25
Location: Romania

Reputation: -34.1
Votes: 4

Post Posted: 29-08-2014, 20:44:54 | Translate post to: ... (Click for more languages)

Ma rog,incerc maine alta si iti zic.

Fondator pincipal:Fury.Freakz.Ro
0 0
  
Back to top
View user's profile Send private message
lemonEZAH

[Licensed to kill]



Status: Offline
(since 04-11-2019 15:30)
Joined: 28 Dec 2013
Posts: 7058, Topics: 351
Location: England

Reputation: 99.3
Votes: 483

Post Posted: 29-08-2014, 21:44:37 | Translate post to: ... (Click for more languages)

Code:
#include <amxmodx>

static const
   PLUGIN[] = "Muzica in blana",
   VERSION[] = "1.0",
   AUTHOR[] = "C0sm1N";

new const Music[][] =
{
   "sound/muzica/numemelodie.mp3",
   "sound/muzica/numemelodie2.mp3",
   "sound/muzica/numemelodie3.mp3",
   "sound/muzica/numemelodie4.mp3",
   "sound/muzica/numemelodie5.mp3"
}
public plugin_init()   register_plugin(PLUGIN,VERSION,AUTHOR)

public client_connect() {
   new SunetRandom;
   SunetRandom = random_num(0,5)
   switch(SunetRandom)
   {
      case 0: client_cmd(SunetRandom,"mp3 play %s",Music[0])
      case 1: client_cmd(SunetRandom,"mp3 play %s",Music[1])
      case 2: client_cmd(SunetRandom,"mp3 play %s",Music[2]);
      case 3: client_cmd(SunetRandom,"mp3 play %s",Music[3]);
      case 4: client_cmd(SunetRandom,"mp3 play %s",Music[4]);
   }
}
public plugin_precache(){
   static i
   for(i = 0; i < sizeof Music; i++)
      precache_generic(Music[i])
}

".mp3" sa fie si adaugi tu numele lor, in loc de numemelodie, numemelodie2, e.t.c adaugi numele sunetelor si le va lua random.

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

[Licensed to kill]



Status: Offline
(since 04-11-2019 15:30)
Joined: 28 Dec 2013
Posts: 7058, Topics: 351
Location: England

Reputation: 99.3
Votes: 483

Post Posted: 21-09-2014, 16:55:47 | Translate post to: ... (Click for more languages)

DarkJB wrote:
Imi puteti da plugin-ul acela,cand te conectezi/descarci resurse pe server sa sea uda o melodie?

Ai rezolvat ceva?

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 EDUTz, 05 December 2014 11:17



 
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 21-07-2025, 20:07:36
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password