[Tutorial] How to make zones visible under minimap.
#1

Removed.
Reply
#2

I told you already, read this:
https://sampforum.blast.hk/showthread.php?tid=65567
Reply
#3

Did you just click new ?
If it's a filterscript, then make it, not a GM.
Reply
#4

Also if you copy and paste that code it would mess your class selection up.

@ ModianO: this isn't a tutorial. And you should remove anything that isn't needed from the code.
Reply
#5

I was inactive, what's wrong?
Reply
#6

Quote:
Originally Posted by ModianO
Посмотреть сообщение
I was inactive, what's wrong?
Everything about this thread.

You don't explain what anything does. You tell people to copy from pastebin. And the code there would bug a mode.

EG,
Read the comments.
pawn Код:
public OnGameModeInit()
{
    // Don't use these lines if it's a filterscript <<
    SetGameModeText("Blank Script");// this will change the mode text to "blank script"
    AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);//adds another cj class to the mode messing classes up
    return 1;
}
This will mess class selection up.
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
    SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
    SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
    return 1;
}
The script is either a gamemode or a filterscript not both. So you should edit the code accordingly. Remove any callbacks/code that are not used.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)