Raised This Month: $51 Target: $400
 12% 

Showing results 1 to 25 of 79
Search took 0.01 seconds.
Search: Posts Made By: vilaemail
Forum: Approved Plugins 04-05-2010, 13:59
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

Hi, thanks for approving. This version of plugin *WORKS*, but it needs some improvements (most of them are done), but lately I don't have enough time to test and upload new version. It will come by...
Forum: Approved Plugins 02-19-2010, 13:51
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

I request all languages that are included in plugins that you get by installing amxx. In those leet is also a "language" so I request it also, if anyone "translates" it...
Forum: Approved Plugins 02-18-2010, 03:54
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

That is something I already put in v2.3, but I haven't had enough time to test it. When I test plugin and be sure it is fully functional I will publish it here. Please be patient.
Forum: Translation Request 02-13-2010, 07:12
Replies: 6
Bet
Views: 2,139
Posted By vilaemail
Re: Bet

Thanks! You will get your credits in original thread (http://forums.alliedmods.net/showthread.php?t=116085) as soon as I publish v2.3.
Forum: Approved Plugins 02-09-2010, 11:56
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

Plugin is used on one server with 24 slots. And hasn't shown any sings of lagging or slowing down a server. If you still feel that way please make sure that it is my plugin and not any other. There...
Forum: Approved Plugins 02-09-2010, 08:25
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

Then change it like this:
BET_PREFIX[] = "[Whatever you want] %L"And compile it locally.



This is only bet via chat in v1.6, there is similar one for source, but not for cs 1.6 (and amxx...
Forum: Approved Plugins 02-07-2010, 13:44
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

Bet v2.2 is released. Odds system is considerably improved. For this release I must give thanks to ConnorMcLeod (http://forums.alliedmods.net/member.php?u=18946) because of his code contribution...
Forum: Scripting Help 02-07-2010, 11:07
Replies: 3
Views: 1,182
Posted By vilaemail
Re: C4 questions

Thank you.
Forum: Scripting Help 02-07-2010, 10:43
Replies: 13
Views: 3,285
Posted By vilaemail
Re: Recursion. Is it a big performance impact in amxx?

Tomorrow I will make thorough testing and post results.
Forum: Scripting Help 02-07-2010, 10:06
Replies: 3
Views: 1,182
Posted By vilaemail
C4 questions

I found several plugins handling countdown, I studied this (http://forums.alliedmods.net/showthread.php?p=483666) plugin a lot, but I am still confused :oops:

The cvar mp_c4timer has the length of...
Forum: Scripting Help 02-07-2010, 10:02
Replies: 13
Views: 3,285
Posted By vilaemail
Re: Recursion. Is it a big performance impact in amxx?

Solution so to say is what I first posted:

gcd(a,b) {

if (b==0)
return a;
else
return gcd(b, a % b);
} I called function with this parameters:
200,195
Forum: Translation Request 02-07-2010, 08:27
Replies: 24
Views: 5,130
Posted By vilaemail
Re: Surf Menu

Serbian translation:

[sr]
MENU_HEADER = Surf Meni v%s
MENU_HELP = Pomoc Meni
MENU_CHANGE = Otvori meni banke
MENU_HATS = Sesiri
MENU_MP = Muzicki plejer
MENU_WEAPON = Meni oruzija
HELP_MOTD...
Forum: Approved Plugins 02-07-2010, 08:22
Replies: 154
Views: 132,807
Posted By vilaemail
Re: Multi FastDownload

Very useful thanks.
Forum: Trash 02-07-2010, 08:19
Replies: 7
Views: 2,256
Posted By vilaemail
Forum: Translation Request 02-07-2010, 07:19
Replies: 42
Views: 23,790
Posted By vilaemail
Re: Bad Camper (Translations)

Serbian translation:

[sr]
CAMP_METER = Kamp metar: %i%%
CAMPING_STARTED = %s kampuje.
CAMPING_STOPPED = %s je prestao da kampuje.
PUNISH_SLAP = Udarac
PUNISH_HEALTH = Oduzimanje helta...
Forum: Approved Plugins 02-07-2010, 07:16
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

Well I will, though I hope there are no bugs, since I tested a lot. If you find any feel free to post it here, and I will fix them ASAP.
Forum: Translation Request 02-07-2010, 06:35
Replies: 6
Bet
Views: 2,139
Posted By vilaemail
Re: Bet

Still looking for this translations:



Text to translate:
Forum: Approved Plugins 02-07-2010, 05:20
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

V2.1 is out, with few more modifications of odds system. I find it quite good now.



What are you trying to say?
Forum: Scripting Help 02-07-2010, 05:11
Replies: 13
Views: 3,285
Posted By vilaemail
Re: Recursion. Is it a big performance impact in amxx?

I found function very fast.

Thank you all for your help.
Forum: Scripting Help 02-07-2010, 04:57
Replies: 13
Views: 3,285
Posted By vilaemail
Re: Recursion. Is it a big performance impact in amxx?

Your code is not optimized. For example if I have numbers 50 and 45.. Why would I test if both of them are dividable by 44, 43 etc. It is much easier to start from half of the bigger number AND EVEN...
Forum: Scripting Help 02-07-2010, 04:56
Replies: 13
Views: 3,285
Posted By vilaemail
Re: Recursion. Is it a big performance impact in amxx?

Thank you big time. Will try it immediately!
Forum: Scripting Help 02-06-2010, 13:50
Replies: 17
Views: 3,206
Posted By vilaemail
Re: Compile errors

Learn to read the compiler errors. That way you would fix those "silly mistakes".
Forum: Scripting Help 02-06-2010, 13:42
Replies: 13
Views: 3,285
Posted By vilaemail
Recursion. Is it a big performance impact in amxx?

Hi. Let's say that I need recursive function and the maximum times it calls itself is about 15.

Two questions:


How many recursive calls may there be in amxx?
Will that number of calls (15)...
Forum: Approved Plugins 02-06-2010, 13:09
Replies: 127
Bet
Views: 125,925
Posted By vilaemail
Re: Bet

Bet v2.0 is out! New way of calculating odds!



Comments, suggestions and critics are always welcome.
Forum: Approved Plugins 02-06-2010, 10:58
Replies: 41
Views: 50,110
Posted By vilaemail
Re: Trade Money

Serbian translation:

[sr]
SPAWNMSG = !tAko zelite !yTraziti !tili !yDati !tnovac , napisite !y( !g/novac !y, !g!novac !y, !g.novac !y)
EXIT = \yExit
MAINMENUTITLE = \yTrgovanje novcem...
Showing results 1 to 25 of 79

 
Forum Jump

All times are GMT -4. The time now is 09:53.


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