Posts: 314
Threads: 120
Joined: Dec 2011
Reputation:
0
03.08.2012, 22:04
(
Последний раз редактировалось Eminem 2ka9; 03.08.2012 в 22:04.
Причина: Mistyped Title
)
I have a game mode, it already has class selection but I don't like it. The filterscript I have actually has a decent class selection with categories, but I'm not fully sure How to actually switch from gamemode class selection to my Filterscripts class selection. Would removing class selection from my gamemode do this automatically? I don't know!
Thanks a lot.
Posts: 1,495
Threads: 131
Joined: Jul 2009
Reputation:
0
what about trying it out?
Posts: 314
Threads: 120
Joined: Dec 2011
Reputation:
0
Hm I'm not fully sure what to remove, I could corrupt my Gamemode.
Posts: 314
Threads: 120
Joined: Dec 2011
Reputation:
0
Will I remove them from gamemode and put them into my filterscript?
It already has its own!
//======================CLASSES FUNCTIONS=====================//
new gPlayerClass[MAX_PLAYERS];
public OnPlayerRequestClass(playerid, classid)
{
gPlayerClass[playerid] = ASSAULT_CLASS;
return 1;
}
Posts: 177
Threads: 10
Joined: Jul 2012
Reputation:
0
Eminem, i suggest you to backup your script, just make a copy of it with a different name, then just mess around with it, that helped me alot when i was new to scripting
Posts: 314
Threads: 120
Joined: Dec 2011
Reputation:
0
Oh ok I getcha, thanks I'm new to scripting I'll try that thanks.