-
Grand Master
how to disable dev command for Cliffside map?
Cliffside -- disable dev command
Colorado -- enable dev command
** custom config or coding **
thank you
Last edited by javaz97; 07-02-14 at 06:57 AM.
-
-
Grand Master
Re: how to disable dev command for Cliffside map?
-
f793
Re: how to disable dev command for Cliffside map?
It's not possible to do like this because DEV is working on accounts not on maps.
-
Grand Master
Re: how to disable dev command for Cliffside map?
i need custom config for this
- - - Updated - - -
dev command
/tp
/gi
/ban
/kick
-
Grand Master
Re: how to disable dev command for Cliffside map?
-
Grand Master
Re: how to disable dev command for Cliffside map?
-
Harro
Re: how to disable dev command for Cliffside map?
Basically just have it read a map ginfo pretty easy to do and extremousz it is possible for commands lol, as i did this for /tp awhile back.
-
Grand Master
Re: how to disable dev command for Cliffside map?
-
Grand Master
Re: how to disable dev command for Cliffside map?
ok code for check mapid
"ginfo_.mapId == GBGameInfo::MAPID_WZ_XXXX"
-
Sorcerer Supreme
Re: how to disable dev command for Cliffside map?
Try put this
if(targetPlr->loadout_->GameMapId == GBGameInfo::MAPID_WZ_Colorado)
{
//Your Commands
}
for int ServerGameLogic::ProcessChatCommand(obj_ServerPlayer* plr, const char* cmd)
i think work.
-
Harro
Re: how to disable dev command for Cliffside map?
Pretty much what poster said there is another way to do it though.
-
Sorcerer Supreme
Re: how to disable dev command for Cliffside map?
In fact, there are many ways, such as adding additional account. And so on.
-
Grand Master
Re: how to disable dev command for Cliffside map?
thank Poster13 and FinalEnd
i complete