Still nothing,
anyone can share the server.cfg or where can I change it.
thank you
i tried the commands with baratas external console, they work and remove the waypoints.
like i said, i doubt they will work using a serverconfig or even a plugin
I don't want to remove them, just want to make them smaller, like I've seen in most of the servers.
Could be a dvar, but where to put it?
Thank you
yeah but i was just pointing out that they work in the external console but not in servercfg
tried the Promod Plugin, but it doesn't change the waypointsize, but if I type !promod or !waypointsize 13 it changes for what I want, is there any way to make like default every time I start the server??
(03-07-2015, 16:18)warl0ck Wrote: tried the Promod Plugin, but it doesn't change the waypointsize, but if I type !promod or !waypointsize 13 it changes for what I want, is there any way to make like default every time I start the server??
thank you
yeas!
I try make it , wait ~2 hours , now I am go on street...
ssrry for my bad english
(03-07-2015, 16:18)warl0ck Wrote: tried the Promod Plugin, but it doesn't change the waypointsize, but if I type !promod or !waypointsize 13 it changes for what I want, is there any way to make like default every time I start the server??
thank you
yeas!
I try make it , wait ~2 hours , now I am go on street...
ssrry for my bad english
aka Decompile Promod plugin, search for "!waypointsize" and put it in your code. AWESUM!!1!1
03-07-2015, 18:30 (This post was last modified: 03-07-2015, 18:37 by warl0ck.)
(03-07-2015, 18:23)Nekochan Wrote:
(03-07-2015, 18:14)Dude Wrote:
(03-07-2015, 16:18)warl0ck Wrote: tried the Promod Plugin, but it doesn't change the waypointsize, but if I type !promod or !waypointsize 13 it changes for what I want, is there any way to make like default every time I start the server??
thank you
yeas!
I try make it , wait ~2 hours , now I am go on street...
ssrry for my bad english
aka Decompile Promod plugin, search for "!waypointsize" and put it in your code. AWESUM!!1!1
Can you please, explain it in noob language pls?
Put in my code? Which code?
Sorry man.
Thanks
03-07-2015, 18:35 (This post was last modified: 03-07-2015, 18:36 by Nekochan.)
(03-07-2015, 18:30)warl0ck Wrote:
(03-07-2015, 18:23)Nekochan Wrote:
(03-07-2015, 18:14)Dude Wrote:
(03-07-2015, 16:18)warl0ck Wrote: tried the Promod Plugin, but it doesn't change the waypointsize, but if I type !promod or !waypointsize 13 it changes for what I want, is there any way to make like default every time I start the server??
thank you
yeas!
I try make it , wait ~2 hours , now I am go on street...
ssrry for my bad english
aka Decompile Promod plugin, search for "!waypointsize" and put it in your code. AWESUM!!1!1
Can you please, explain it in book language pls?
Put in my code? Which code?
Sorry man.
Thanks
Put this into Onconnect, i.e.
Code:
public override void OnPlayerConnect(ServerClient Client)
{
if (Client == null)
{
return;
}
SetClientDvar(Client.GetClientNum(), "waypointIconWidth \""36"\"");
SetClientDvar(Client.GetClientNum(), "waypointIconHeight \""36"\"");
}
(03-07-2015, 16:18)warl0ck Wrote: tried the Promod Plugin, but it doesn't change the waypointsize, but if I type !promod or !waypointsize 13 it changes for what I want, is there any way to make like default every time I start the server??
thank you
yeas!
I try make it , wait ~2 hours , now I am go on street...
ssrry for my bad english
aka Decompile Promod plugin, search for "!waypointsize" and put it in your code. AWESUM!!1!1
Can you please, explain it in book language pls?
Put in my code? Which code?
Sorry man.
Thanks
Put this into Onconnect, i.e.
Code:
public override void OnPlayerConnect(ServerClient Client)
{
if (Client == null)
{
return;
}
SetClientDvar(Client.GetClientNum(), "waypointIconWidth \""36"\"");
SetClientDvar(Client.GetClientNum(), "waypointIconHeight \""36"\"");
}
sry, hate when don't know what to do.
in this case I would change for "13"
and where do I put the code?