can i do this ?
#1

im creating a filtersccript and i wonder can i delete these lines ?:
main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}
#endif

public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}

public OnGameModeExit()
{
return 1;
}
Reply
#2

But if you can put there, but if there Do you delete
Reply
#3

yes you can if there is nothing to do with the those lines
Reply
#4

If you are creating filterscript then why did you wrote those lines if you wanted to delete?

No you cant delete

Код:
 public OnGameModeInit
Dont delete anything which is under gamemodeinit, Edit the gamemode text.
Reply
#5

Quote:
Originally Posted by [vTc]Patroool
Посмотреть сообщение
If you are creating filterscript then why did you wrote those lines if you wanted to delete?

No you cant delete

Код:
 public OnGameModeInit
Dont delete anything which is under gamemodeinit, Edit the gamemode text.
If he wants to make a filterscript, OnGameMode Init/Exit has nothing to do with it. What's the point of having it?

pawn Код:
#define FILTERSCRIPT

#include <a_samp>

public OnFilterScriptInit()
{
    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)