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

Showing results 1 to 25 of 416
Search took 0.02 seconds.
Search: Posts Made By: TheUnderTaker
Forum: Scripting 06-08-2016, 10:37
Replies: 10
Views: 2,888
Posted By TheUnderTaker
Re: UTF8 ServerName CSGO

Use online compiler and paste the code https://spider.limetech.org/
Forum: Plugin/Gameplay Ideas and Requests 06-08-2016, 10:31
Replies: 4
Views: 1,278
Posted By TheUnderTaker
Re: Help!! Repair request

Try to see any logs/errors in the logs folder on your last opening.

Console must print something or write errors in logs folder.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 14:32
Replies: 3
Views: 8,840
Posted By TheUnderTaker
Re: [REQ] CSGO Wallhack plugin

Thanks I will try.
Forum: Plugin/Gameplay Ideas and Requests 06-07-2016, 13:47
Replies: 3
Views: 8,840
Posted By TheUnderTaker
[REQ] CSGO Wallhack plugin

Hi, I'm looking for plugin that enables esp in servers for admins (something like /esp 0/1)

This one didn't work : https://forums.alliedmods.net/showthread.php?t=211117

Thanks for who helps.
Forum: Scripting 06-07-2016, 08:00
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

Thank you very much! I will try it later :)
Forum: Scripting 06-06-2016, 14:36
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

I need only the time he played since the command, It doesn't matter try to do blocking from player to join red/blue team for a custom time.
Forum: Scripting 06-06-2016, 09:57
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

I don't need to give you the plugin, just do it like if the time set by command expires, do something or show me how you get client time that been in the server something like...
Forum: Scripting 06-06-2016, 07:53
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

I have made the plugin, just wanna add times but I don't know how to do that.
Forum: Scripting 06-05-2016, 13:38
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

Not really understand how I put the code into my plugin and how I block things, just do it and type with "//" where to put my actions,

I'm not sure if that's true to use OnGameFrame() function.
...
Forum: Scripting 06-05-2016, 09:06
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

Well I don't know how to do that with clientprefs.
Forum: Scripting 06-05-2016, 07:10
Replies: 7
Views: 2,490
Posted By TheUnderTaker
Re: Code Fix

I will try.



I will try.
Forum: Scripting 06-04-2016, 14:08
Replies: 7
Views: 2,490
Posted By TheUnderTaker
Re: Code Fix

Still, Max health aren't setting to 200.
Forum: Scripting 06-04-2016, 13:54
Replies: 7
Views: 2,490
Posted By TheUnderTaker
Code Fix

SetEntData(client, FindDataMapOffs(client, "m_iMaxHealth"), 200, 4, true);
SetEntData(client, FindDataMapOffs(client, "m_iHealth"), 200, 4, true);

Why doesn't it change player max health? it...
Forum: Scripting 06-04-2016, 05:21
Replies: 8
Views: 1,903
Posted By TheUnderTaker
Re: Remove specific entities

Here's an example how I removed the demoman shield in my jailbreak server(TF2)



switch(class)
{
case TFClass_DemoMan:
{
int ent = -1;
while ((ent = FindEntityByClassnameSafe(ent,...
Forum: Scripting 06-03-2016, 14:57
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Re: Block/Allow from player to do something for X time

I would like to get help about my question, thanks about it tho.

For example I want to block you from do specific command for X time and I need to store the time left in MySQL / clientprefs...
Forum: Scripting 06-03-2016, 14:19
Replies: 16
Views: 3,572
Posted By TheUnderTaker
Block/Allow from player to do something for X time

I need help with blocking/allowing from player to do something for X time (hours/mins/seconds)...

I never tried clientprefs/MySQL and etc...

If can someone help it would be good!
Forum: Scripting 06-03-2016, 13:41
Replies: 7
Views: 1,395
Posted By TheUnderTaker
Re: Random client from vote

It's client side I guess...
Forum: Scripting 06-02-2016, 09:08
Replies: 16
Views: 2,426
Posted By TheUnderTaker
Re: Hook last player alive in his team?

I don't need it, forgot to say it already solved.
Forum: Scripting 06-01-2016, 08:17
Replies: 11
Views: 2,729
Posted By TheUnderTaker
Re: Help with convars

It would be easier to make a command that effect on only 1 player,
you can try convar and make a loop to check the players in the servers.
Forum: Scripting 05-31-2016, 14:26
Replies: 16
Views: 2,426
Posted By TheUnderTaker
Re: Hook last player alive in his team?

Thanks I'm gonna try it.
Forum: Scripting 05-31-2016, 13:47
Replies: 16
Views: 2,426
Posted By TheUnderTaker
Re: Hook last player alive in his team?

Where should I do timer ?
Where it's

if (teamAmount == 1) {
// timer
PrintToChatAll("%N", client);
}
Forum: Scripting 05-31-2016, 13:04
Replies: 16
Views: 2,426
Posted By TheUnderTaker
Re: Hook last player alive in his team?

HookEvent("player_death", OnDeath);

public Action:OnDeath(Event event, const char[] name, bool dontBroadcast)
{
new client = GetClientOfUserId(GetEventInt(event, "userid"));
int...
Forum: Scripting 05-31-2016, 08:24
Replies: 16
Views: 2,426
Posted By TheUnderTaker
Hook last player alive in his team?

Hey guys,

Can someone help me with hooking that player stay alive on his team? for example in blue team x players alive and in red team 1 player alive and get the last player info...

Thank you...
Forum: Scripting 05-29-2016, 08:23
Replies: 5
Views: 1,137
Posted By TheUnderTaker
Re: Motd panel

That's good too, I use it in my plugin and it works fine :)
Forum: Scripting 05-29-2016, 08:00
Replies: 5
Views: 1,137
Posted By TheUnderTaker
Re: Motd panel

ShowMOTDPanel(client, "Title", "www.url.com", MOTDPANEL_TYPE_URL);

Try it
Showing results 1 to 25 of 416

 
Forum Jump

All times are GMT -4. The time now is 11:52.


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