Filterscript names
#1

I made my own FS but when i open samp-server.exe i dont see the name of my filterscript i only see where it was loaded and yes a named it in Pawno

Example: Airbreak Filterscript by Victor.

When i load his FS, the name shows but when i load mine, the name doesn't show

Please help me.
Reply
#2

If you want it to show something in game, then under OnFilterscriptInit you need to use SendClientMessageToAll, or if you want it to show in the rcon, use print or printf.
Reply
#3

pawn Код:
public OnFilterScriptInit()
{
     printf("Zacks super Hyper filterscript 'zackscript.amx' loaded CONFIRMED");
     return 1;
}
Reply
#4

I dont want it to show the name in game i want it to when i open samp-server.

Here is an example:


Btw the FS [RP]Victor made, he did not use printf, he just used normal print.

And the code above did not work.
Reply
#5

Well then use print do what that other person done except use print insteadof printf. it will not show up in game it will show in the rcon
Reply
#6

I look through his script and did what he did and it still don't show in Rcon, btw i dont want it to show in game.
Reply
#7

As Cale said

pawn Код:
public OnFilterScriptInit()
{
     print("Zacks super Hyper filterscript 'zackscript.amx' loaded CONFIRMED");
     return 1;
}
That should work.
Reply
#8

Just use something like this.
But btw, print is just SendClientMessage except it outputs into the samp-server.exe console.

printf is like formatting AND SendClientMessage.

pawn Код:
public OnFilterScriptInit();
{
print("Zack's FS is loaded");
}
Reply
#9

Ok look at this

pawn Код:
public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Filterscript By Zack");
    print("--------------------------------------\n");
    return 1;
}
I have this but it dont work

I did not but the name for security reasons, lol, Toni knows why. But i don't see it when i open same-server.exe
Reply
#10

Upload complete script on pastebin, please.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)