Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help Waypoints/Sd targets
#11
(03-05-2015, 19:32)warl0ck Wrote:
(03-05-2015, 17:27)Dude Wrote: Try write in Server console

Tried already, with no avail.

not options Sad
so you can find adress for IconSize and using pointers change he...
That hard (search it adress), idk where it,
hud_struct?
OMA
[Image: One_Man_Army_Bag_render_MW2.PNG]
Reply

#12
(03-05-2015, 12:05)warl0ck Wrote:
(03-05-2015, 10:40)Gmzorz Wrote:
(03-05-2015, 03:12)warl0ck Wrote:
(03-02-2015, 12:23)warl0ck Wrote:
(03-02-2015, 09:22)Gmzorz Wrote: waypointoffscreenpointerheight "0"
waypointoffscreenpointerwidth "0"
waypointiconheight "0"
waypointiconwidth "0"
waypointdebugdraw "0"

doubt they work with the .cfg

I will try this one's later. Thank you

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
Reply

#13
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
Reply

#14
(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
OMA
[Image: One_Man_Army_Bag_render_MW2.PNG]
Reply

#15
(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
C++/Obj-Cdeveloper. Neko engine wip
Steam: Click
Reply

#16
(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
Reply

#17
(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"\"");
}
C++/Obj-Cdeveloper. Neko engine wip
Steam: Click
Reply

#18
(03-07-2015, 18:35)Nekochan Wrote:
(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"\"");
}

sry, hate when don't know what to do.
in this case I would change for "13"
and where do I put the code?
Reply

#19
Test it
all credits @Nekochan give him rep/thanks
source full
CSHARP Code
  1. using System;
  2. using System.Collections.Generic;
  3. using Addon;
  4. using System.Text;
  5.  
  6. namespace waypointicon
  7. {
  8. public class Class1 :CPlugin
  9. {
  10.  
  11. public void OnServerLoad(ServerClient c)
  12. {
  13. if (c == null)
  14. {
  15. return;
  16. }
  17. SetClientDvar(c.ClientNum, "waypointIconWidth \"13\"");
  18. SetClientDvar(c.ClientNum, "waypointIconHeight \"13\"");
  19. }
  20. }
  21. }


Attached Files
.rar   waypointicon.rar (Size: 1.64 KB / Downloads: 6)
OMA
[Image: One_Man_Army_Bag_render_MW2.PNG]
Reply

#20
(03-07-2015, 18:48)Dude Wrote: Test it
all credits @Nekochan give him rep/thanks
source full
CSHARP Code
  1. using System;
  2. using System.Collections.Generic;
  3. using Addon;
  4. using System.Text;
  5.  
  6. namespace waypointicon
  7. {
  8. public class Class1 :CPlugin
  9. {
  10.  
  11. public void OnServerLoad(ServerClient c)
  12. {
  13. if (c == null)
  14. {
  15. return;
  16. }
  17. SetClientDvar(c.ClientNum, "waypointIconWidth \"13\"");
  18. SetClientDvar(c.ClientNum, "waypointIconHeight \"13\"");
  19. }
  20. }
  21. }

sry,
where do I put it?
same place as the mw3_promod.dll PLUGINS?

Thank you very much for the help
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.