User
Pass
2FA
 
 

Cerere modificare 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) -> Resources
Author Message1513
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 10:04:31 | Translate post to: ... (Click for more languages)

Salut, am si eu o problema la un plugin, as dori sa-mi modificati urmatoarele:

- cand scriu /top15, imi apar numai 12 jucatori, eu vreau sa apara 15;
- vreau ca atunci cand scriu /top15, sa se auda sunetul ala, "Top fifteen";
- vreau ca atunci cand scriu /rankstats, sa se auda sunetul: "user stats".


SURSA:

--------------------------------------------------------------------------

#include <amxmodx>
#include <amxmisc>
#include <colorchat>
#include <csx>

#pragma semicolon 1

#define MAX_BUFFER_LENGTH 2047

#define STATS_KILLS 0
#define STATS_DEATHS 1
#define STATS_HS 2
#define STATS_TKS 3
#define STATS_SHOTS 4
#define STATS_HITS 5
#define STATS_DAMAGE 6

new g_sBuffer[MAX_BUFFER_LENGTH + 1] = "";

new g_TopNum;

new cvar_top;
new cvar_rank;
new cvar_rankstats;

public plugin_init() {
register_plugin("Rank", "0.2", "Ex3cuTioN");

register_clcmd("say", "hook_say");
register_clcmd("say_team", "hook_say");

register_clcmd("amx_rank", "cmdRank");
register_clcmd("amx_rankstats", "cmdRankStats");

cvar_top = register_cvar("amx_stats_top","1");
cvar_rank = register_cvar("amx_stats_rank","1");
cvar_rankstats = register_cvar("amx_stats_rankstas","1");

}

public hook_say(id) {
static s_Args[192];

read_args(s_Args, sizeof(s_Args) - 1);
remove_quotes(s_Args);

if(equal(s_Args, "/rank", 5) || equal(s_Args,"/rankstats",10)) {
replace(s_Args, sizeof(s_Args) - 1, "/", "");
client_cmd(id, "amx_%s", s_Args);
}

if(equal(s_Args,"/top",4)) {
if(get_pcvar_num(cvar_top) == 0) {
ColorChat(id,GREEN,"[Top]^x01 Dezactivat");
return PLUGIN_HANDLED;
}

replace(s_Args,sizeof(s_Args) - 1,"/top","");
g_TopNum = str_to_num(s_Args);

cmdTop15(id);
}

return PLUGIN_CONTINUE;
}

public cmdRank(id) {
if(get_pcvar_num(cvar_rank) == 0) {
ColorChat(id,GREEN,"[Rank]^x01 Dezactivat");
return PLUGIN_HANDLED;
}

new izStats[8], izBody[8];
new iRankPos, iRankMax;
new nick[32],nickplayer[32];
new arg[32];

read_argv(1, arg, 31);
new player = cmd_target(id,arg,14);

iRankMax = get_statsnum();
get_user_name(id,nick,31);
get_user_name(player,nickplayer,31);

if(equali(arg,"")) {
iRankPos = get_user_stats(id, izStats, izBody);

ColorChat(id,GREEN,"[Rank]^x03 %s^x01 esti pe locul^x03 %d^x01 din^x03 %d^x01 cu^x03 %d^x01 fraguri si^x03 %d^x01 decese.",nick,iRankPos,iRankMax,izStats[STATS_KILLS],izStats[STATS_DEATHS]);
ColorChat(id,GREEN,"[Rank]^x01 Pentru mai multe detalii tasteaza^x03 /rankstats");
return PLUGIN_HANDLED;
}

if(!is_user_connected(player) || !player) {
ColorChat(id,GREEN,"[Rank]^x01 Acest user nu este pe server");
return PLUGIN_HANDLED;
}

iRankPos = get_user_stats(player, izStats, izBody);

ColorChat(id,GREEN,"[Rank]^x03 %s^x01 este pe locul^x03 %d^x01 din^x03 %d^x01 cu^x03 %d^x01 fraguri si^x03 %d^x01 decese.",nickplayer,iRankPos,iRankMax,izStats[STATS_KILLS],izStats[STATS_DEATHS]);
ColorChat(id,GREEN,"[Rank]^x01 Pentru mai multe detalii despre^x03 %s^x01 tasteaza^x03 /rankstats %s",nickplayer,nickplayer);

return PLUGIN_HANDLED;
}

public cmdRankStats(id) {
if(get_pcvar_num(cvar_rankstats) == 0) {
ColorChat(id,GREEN,"[RankStats]^x01 Dezactivat");
return PLUGIN_HANDLED;
}

new nick[32];
client_cmd(id,"spk ^"vox/deeoo user stats^"");
format_rankstats(id, g_sBuffer);
get_user_name(id, nick, 31);
show_motd(id, g_sBuffer, nick);

return PLUGIN_CONTINUE;
}

format_rankstats(id, sBuffer[MAX_BUFFER_LENGTH + 1]) {
new izStats[8] = {0, ...};
new izBody[8];
new iRankPos, iLen, iRankMax;
new nick[32],nickplayer[32];
new arg[32];

new hostname[64];
get_cvar_string("hostname",hostname,63);

read_argv(1, arg, 31);
new player = cmd_target(id,arg,14);

get_user_name(id,nick,31);
get_user_name(player,nickplayer,31);

iRankMax = get_statsnum();

if(equali(arg,"")) {
iRankPos = get_user_stats(id, izStats, izBody);

iLen = format(sBuffer, MAX_BUFFER_LENGTH, "<body bgcolor=#000000><pre>");
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<center><b><font size=^"4^" color=rgb(255,255,255)>Statisticile tale pe </font><font size=^"4^" color=rgb(255,0,0)>%s</font></b></center>^n^n",hostname);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font size =^"3^" color=rgb(255,0,0)>%s,</font></b>^n^n",nick);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Esti pe locul</font><font color=rgb(255,0,0)> %d<font color=rgb(255,255,255)> din</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> jucatori</b>^n",iRankPos,iRankMax);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Ai omorat</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> jucatori</font><font color=rgb(255,0,0)> [%d in cap]</b>^n",izStats[STATS_KILLS],izStats[STATS_HS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Ai fost omorat de</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> ori</font></b>^n",izStats[STATS_DEATHS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Ai tras cu arma de</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> ori</font></b>^n",izStats[STATS_SHOTS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Ai lovit adversarii tai de</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> ori</font></b>^n",izStats[STATS_HITS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Eficienta ta este de</font><font color=rgb(255,0,0)> %0.2f%%</font></b>^n",effec(izStats));
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Precizia ta de tintire este de</font><font color=rgb(255,0,0)> %0.2f%%</font></b>^n^n",accuracy(izStats));
}
else {
if(!is_user_connected(player) || !player) {
ColorChat(id,GREEN,"[Rank]^x01 Acest user nu este pe server");
return PLUGIN_HANDLED;
}

iRankPos = get_user_stats(player, izStats, izBody);

iLen = format(sBuffer, MAX_BUFFER_LENGTH, "<body bgcolor=#000000><pre>");
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<center><b><font size=^"4^" color=rgb(255,255,255)>Statisticile lui %s pe </font><font size=^"4^" color=rgb(255,0,0)>%s</font></b></center>^n^n",nickplayer,hostname);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font size =^"3^" color=rgb(255,0,0)>%s,</font></b>^n^n",nickplayer);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Este pe locul</font><font color=rgb(255,0,0)> %d<font color=rgb(255,255,255)> din</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> jucatori</b>^n",iRankPos,iRankMax);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>A omorat</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> jucatori</font><font color=rgb(255,0,0)> [%d in cap]</b>^n",izStats[STATS_KILLS],izStats[STATS_HS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>A fost omorat de</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> ori</font></b>^n",izStats[STATS_DEATHS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>A tras cu arma de</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> ori</font></b>^n",izStats[STATS_SHOTS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>A lovit adversarii lui de</font><font color=rgb(255,0,0)> %d</font><font color=rgb(255,255,255)> ori</font></b>^n",izStats[STATS_HITS]);
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Eficienta lui este de</font><font color=rgb(255,0,0)> %0.2f%%</font></b>^n",effec(izStats));
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font color=rgb(255,255,255)>Precizia lui de tintire este de</font><font color=rgb(255,0,0)> %0.2f%%</font></b>^n^n",accuracy(izStats));
}

return PLUGIN_CONTINUE;
}

Float:accuracy(izStats[8]) {
if(!izStats[STATS_SHOTS])
return (0.0);

return (100.0 * float(izStats[STATS_HITS]) / float(izStats[STATS_SHOTS]));
}

Float:effec(izStats[8]) {
if(!izStats[STATS_KILLS])
return (0.0);

return (100.0 * float(izStats[STATS_KILLS]) / float(izStats[STATS_KILLS] + izStats[STATS_DEATHS]));
}

public cmdTop15(id) {
format_top15(g_sBuffer);
client_cmd(id,"spk ^"vox/deeoo top fifteen^"");
show_motd(id, g_sBuffer, "Top 15 jucatori");

return PLUGIN_CONTINUE;
}

format_top15(sBuffer[MAX_BUFFER_LENGTH + 1]) {
new iRankMax = get_statsnum();
new izStats[8], izBody[8];
new iLen = 0;
new nick[32];
new topnum;


new lKills[16], lDeaths[16], lHits[16], lShots[16], lEff[16], lAcc[16];

if(g_TopNum > iRankMax) {
g_TopNum = (iRankMax - 15);
}


if(g_TopNum < 10 || g_TopNum == 15) {
topnum = 0;
}
else {
topnum = (g_TopNum - 10);
}

format(lKills, 15, "Fraguri");
format(lDeaths, 15, "Decese");
format(lHits, 15, "Hits");
format(lShots, 15, "Shots");
format(lEff, 15, "Eff");
format(lAcc, 15, "Acc");

iLen = format(sBuffer, MAX_BUFFER_LENGTH, "<body bgcolor=#000000><pre>");
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font size=^"2^" color=rgb(255,0,0)>%2s %-22.22s %6s %6s %6s %6s %4s %4s %4s</font></b>^n^n","#","NickName",lKills,lDeaths,lHits,lShots,"HS",lEff,lAcc);

for(new i = topnum;i < g_TopNum && MAX_BUFFER_LENGTH - iLen > 0; i++) {
get_user_name(i,nick,31);
get_stats(i, izStats, izBody, nick, 31);
replace_all(nick, 31, "<", "[");
replace_all(nick, 31, ">", "]");
iLen += format(sBuffer[iLen], MAX_BUFFER_LENGTH - iLen, "<b><font size=^"2^"color=rgb(255,255,255)>%2d %-22.22s %6d %6d %6d %6d %4d %3.0f%% %3.0f%%</font></b>^n", i + 1, nick, izStats[STATS_KILLS],
izStats[STATS_DEATHS], izStats[STATS_HITS], izStats[STATS_SHOTS],izStats[STATS_HS], effec(izStats), accuracy(izStats));
}
}

---------------------------------------------------------------------------------------

MULTUMESC!

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


Banned


Status: Offline
(since 26-06-2014 19:12)
Joined: 02 Jul 2011
Posts: 811, Topics: 80
Location: Localhost Y!M: RoCrizzatu

Reputation: 209.2
Votes: 56

 
Post Posted: 06-06-2013, 18:49:58 | Translate post to: ... (Click for more languages)

Te rog sa imi pui tot codu in code sau dai upload la SMA pe un site cum ar fi girlshare.ro ! .... Te pot ajuta eu -


0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 20:40:21 | Translate post to: ... (Click for more languages)

SMA: http://www.girlshare.ro/32567539.4

Te rog sa mi-l faci cum am cerut eu.

Merci mult pt. ajutor! Si app, dami id prin PM daca vrei. -

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


Banned


Status: Offline
(since 26-06-2014 19:12)
Joined: 02 Jul 2011
Posts: 811, Topics: 80
Location: Localhost Y!M: RoCrizzatu

Reputation: 209.2
Votes: 56

 
Post Posted: 06-06-2013, 21:02:02 | Translate post to: ... (Click for more languages)

Code:
"Hello!"                      "spk vox/hello"                       "cd" "u"
"Don't think so"              "spk barney/dontguess"                "cd" "u"
"Don't ask me"                "spk barney/dontaskme"                "cd" "u"
"Hey! Stop that!"             "spk barney/donthurtem"               "cd" "u"
"Yup"                         "spk barney/yup"                      "cd" "u"
"Nope"                        "spk barney/nope"                     "cd" "u"
"Maybe"                       "spk barney/maybe"                    "cd" "u"
"Seeya"                       "spk barney/seeya"                    "cd" "u"
"Man that sounded bad"        "spk barney/soundsbad"                "cd" "u"
"Hello and die"               "spk \'vox/hello and die\'"           "cd" "u"
"Move!"                       "spk \'hgrunt/move! _comma yessir!\'" "cd" "u"
"You will definitely pay!"    "spk hgrunt/c2a2_hg_chat5a"           "cd" "u"
"Laughter"                    "spk hgrunt/c2a3_hg_laugh"            "cd" "u"
"Silence!"                    "spk hgrunt/silence!"                 "cd" "u"
"You talk too much"           "spk barney/youtalkmuch"              "cd" "u"
"You thinkin?"                "spk barney/thinking"                 "cd" "u"
"Open fire Gordon!"           "spk barney/openfire"                 "cd" "u"
"Couldnt make a bigger mess"  "spk barney/bigmess"                  "cd" "u"
"I have a bad feeling"        "spk barney/badfeeling"               "cd" "u"
"Yes sir!"                    "spk hgrunt/yessir!"                  "cd" "u"
"No sir"                      "spk barney/nosir"                    "cd" "u"


Alege una din sunetele astea !
Deoarece nu am cum sa fac eu sunetu cum vrei tu ...!!
Doar daca imi dai tu sunet-ul si fac ...



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
InLoveCs

[00 11 00]



Status: Offline
(since 24-12-2021 07:55)
Joined: 11 Jan 2011
Posts: 8224, Topics: 738
Location: zmx.freakz.ro

Reputation: 2926.8
Votes: 170

     
Post Posted: 06-06-2013, 21:07:43 | Translate post to: ... (Click for more languages)

http://www.girlshare.ro/32567657.1

Ia vezi acum .. am impresia ca nu-ti arata doar 12,ci 10.

am modificat :

Code:
topnum = (g_TopNum - 10);


in ---->

Code:
topnum = (g_TopNum - 15);

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

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 21:16:21 | Translate post to: ... (Click for more languages)

Vezi ca eu am pus sunetele, practic, nu e sunet, se aude ca si cum ar "vorbi serverul", la top15 am pus eu sunetul, dar la /rankstats se aude numai user, nu user stats; Ai aici acele "sunete, cauti liniile astea:

public cmdTop15(id) {
format_top15(g_sBuffer);
client_cmd(id,"spk ^"vox/deeoo top fifteen^"");


public cmdRankStats(id) {
if(get_pcvar_num(cvar_rankstats) == 0) {
ColorChat(id,GREEN,"[RankStats]^x01 Dezactivat");
return PLUGIN_HANDLED;
}

new nick[32];
client_cmd(id,"spk ^"vox/deeoo user stats^"");


Tu mai trebuie sa-mi modifici sa apara 15 jucatori si sa faci sa se auda "user stats". Atat. :)

Posturi unite automat, 06-06-2013, 22:16:21

InLoveCs wrote:
http://www.girlshare.ro/32567657.1

Ia vezi acum .. am impresia ca nu-ti arata doar 12,ci 10.

am modificat :

Code:
topnum = (g_TopNum - 10);


in ---->

Code:
topnum = (g_TopNum - 15);


Scuze pt. 2x post, dar ce mi-ai dat tu, nu e bun, tot 12 imi afiseaza;
Dovada:
http://s11.postimg.org/ijhk4wxhf/top15.jpg

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


Banned


Status: Offline
(since 26-06-2014 19:12)
Joined: 02 Jul 2011
Posts: 811, Topics: 80
Location: Localhost Y!M: RoCrizzatu

Reputation: 209.2
Votes: 56

 
Post Posted: 06-06-2013, 21:34:48 | Translate post to: ... (Click for more languages)

Vezi ca acest plugin care ne-ai zis sa il editam parctic daca scriai :

/top15 iti apareau
Daca scriai /top20 tot asa pana cand nu mai mergea ....

Totul se dovedeste in publicul hook_say -

+ Daca te-am ajutat :D

Posturi unite automat, 06-06-2013, 22:34:48

Defapt !

Prin
Code:
if(g_TopNum < 10 || g_TopNum == 15) {

intelegem ca /top merge de la /top10 pana la /top15 ! Cred ca este o limita deoarece nu incap toate pe un motd -



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 21:35:34 | Translate post to: ... (Click for more languages)

Deci, daca modific:

register_clcmd("say", "hook_say");
register_clcmd("say_team", "hook_say");

In:

register_clcmd("say", "/top15");
register_clcmd("say_team", "/top15"); Imi vor afisa 15?

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


Banned


Status: Offline
(since 26-06-2014 19:12)
Joined: 02 Jul 2011
Posts: 811, Topics: 80
Location: Localhost Y!M: RoCrizzatu

Reputation: 209.2
Votes: 56

 
Post Posted: 06-06-2013, 21:41:23 | Translate post to: ... (Click for more languages)

Nu nu

Posturi unite automat, 06-06-2013, 22:41:23

Dupa cum m-am uitat eu in plugin !!

Daca scri /top iti da direct cei clasati pe primele 10 locuri ! Daca scrii /top15 iti da cei pe primele 15 etc...

Incearca sa intri pe server si sa scri /top15 si sa imi spui ce se intampla -



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 21:43:14 | Translate post to: ... (Click for more languages)

Uite, am facut SS, si am scris /top15

http://s11.postimg.org/ijhk4wxhf/top15.jpg

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


Banned


Status: Offline
(since 26-06-2014 19:12)
Joined: 02 Jul 2011
Posts: 811, Topics: 80
Location: Localhost Y!M: RoCrizzatu

Reputation: 209.2
Votes: 56

 
Post Posted: 06-06-2013, 21:57:32 | Translate post to: ... (Click for more languages)

Vad ca e o problema ! De la 12 nu se mai vad killurile / death nimik ! Inseamna ca e de la motd in sine!!

Acum verific motd :D

Posturi unite automat, 06-06-2013, 22:57:32

Chiar nu gasesc care sa fie PROBLEMA ! Totul e la locul lui -...



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 21:59:45 | Translate post to: ... (Click for more languages)

Si ce fac acum? - Am nevoie de el....
0 0
  
Back to top
View user's profile Send private message
crizzatu
[Banned user]


Banned


Status: Offline
(since 26-06-2014 19:12)
Joined: 02 Jul 2011
Posts: 811, Topics: 80
Location: Localhost Y!M: RoCrizzatu

Reputation: 209.2
Votes: 56

 
Post Posted: 06-06-2013, 22:09:47 | Translate post to: ... (Click for more languages)

Nu inteleg care ar fi problema !
Maine dim il bag pe server-ul meu din PC sa vad cum sta trb si poate imi dau seama cum sta treaba -



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 06-06-2013, 22:14:55 | Translate post to: ... (Click for more languages)

Ok! Multumesc pentru efortul depus!
0 0
  
Back to top
View user's profile Send private message
BoSsCS

[Mentally Stable]



Status: Offline
(since 23-07-2013 09:06)
Joined: 08 Feb 2013
Posts: 25, Topics: 8
Location: Romania

Reputation: 50.3
Votes: 2

Post Posted: 08-06-2013, 09:32:11 | Translate post to: ... (Click for more languages)

UP!! se mai uita cineva?
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) -> Resources  


The time now is 17-08-2025, 00:14:26
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