Link Change Help!!!!
#1

I can't figure out how to change the link in the bottom right corner of the image. I already went through the whole gamemode script but this link is not written anywhere. I don't have any filterscripts attached so that cannot be the case either. Any Suggestions
<img>https://i.imgur.com/EupmBtL.png</img>
Reply
#2

If you can't find it, then in PAWNO or whatever editor you use press CTRL + F and search for .com or anything related to the textdraw.
Reply
#3

Dude when i said that searched the gamemode for it i meant that i used ctrl + f to search .info (which is at the end of the link. Of course i am not noob enough to read the complete script just to look for one line :P
Reply
#4

Best bet, is to get a new gamemode, or learn how to script.

Truely though.
Reply
#5

right now i am a newbie scripter. I went through all the basics and can do quite a few things now. I am just experimenting with a script i found on the internet. I don't intend to use it anywhere. So if you could please help.
Reply
#6

link of the game mode you got?
Reply
#7

https://sampforum.blast.hk/showthread.php?tid=600315
Reply
#8

If you've already removed these lines then you'll need to recompile, and ensure you are using the right amx file on the server.

Код:
www = TextDrawCreate(512.000000, 433.000000, "www.");
    TextDrawBackgroundColor(www, 255);
    TextDrawFont(www, 2);
    TextDrawLetterSize(www, 0.180000, 1.299998);
    TextDrawColor(www, -1);
    TextDrawSetOutline(www, 1);
    TextDrawSetProportional(www, 1);
    TextDrawSetSelectable(www, 0);
 
    samps = TextDrawCreate(532.000000, 433.000000, "samp");
    TextDrawBackgroundColor(samps, 255);
    TextDrawFont(samps, 2);
    TextDrawLetterSize(samps, 0.180000, 1.299998);
    TextDrawColor(samps, -16776961);
    TextDrawSetOutline(samps, 1);
    TextDrawSetProportional(samps, 1);
    TextDrawSetSelectable(samps, 0);
 
    svitra = TextDrawCreate(554.000000, 433.000000, "-");
    TextDrawBackgroundColor(svitra, 255);
    TextDrawFont(svitra, 2);
    TextDrawLetterSize(svitra, 0.180000, 1.299998);
    TextDrawColor(svitra, -1);
    TextDrawSetOutline(svitra, 1);
    TextDrawSetProportional(svitra, 1);
    TextDrawSetSelectable(svitra, 0);
 
    zland = TextDrawCreate(557.000000, 433.000000, "zombieland");
    TextDrawBackgroundColor(zland, 255);
    TextDrawFont(zland, 2);
    TextDrawLetterSize(zland, 0.180000, 1.299998);
    TextDrawColor(zland, -16776961);
    TextDrawSetOutline(zland, 1);
    TextDrawSetProportional(zland, 1);
    TextDrawSetSelectable(zland, 0);
 
    dot = TextDrawCreate(606.000000, 433.000000, ".");
    TextDrawBackgroundColor(dot, 255);
    TextDrawFont(dot, 2);
    TextDrawLetterSize(dot, 0.180000, 1.299998);
    TextDrawColor(dot, -1);
    TextDrawSetOutline(dot, 1);
    TextDrawSetProportional(dot, 1);
    TextDrawSetSelectable(dot, 0);
 
    infos = TextDrawCreate(608.000000, 433.000000, "info");
    TextDrawBackgroundColor(infos, 255);
    TextDrawFont(infos, 2);
    TextDrawLetterSize(infos, 0.180000, 1.299998);
    TextDrawColor(infos, -1);
    TextDrawSetOutline(infos, 1);
    TextDrawSetProportional(infos, 1);
    TextDrawSetSelectable(infos, 0);
Reply
#9

Like the above.

If you can't find that instead of CTRL+F for .info, search for just "zombieland" or "info" and you should fine the group of code for the website link.
Reply
#10

Better off simply searching for all the textdraws using textdraw...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)