Raised This Month: $32 Target: $400
 8% 

[CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)


Post New Thread Reply   
 
Thread Tools Display Modes
NanoC
Veteran Member
Join Date: Jan 2016
Location: Argentina
Old 05-01-2019 , 18:50   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #941

update your sm
__________________
NanoC is offline
Send a message via Skype™ to NanoC
eyal282
Veteran Member
Join Date: Aug 2011
Old 06-04-2019 , 17:27   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #942

Try to explain your request with so many details as you can.
USE PROPER ENGLISH


Here's the grammar correct way to say it:


Try to explain your request with as many details as you can.
__________________
I am available to make plugins for pay.

Discord: Eyal282#1334
eyal282 is offline
Vulden
Junior Member
Join Date: Aug 2019
Old 08-26-2019 , 20:35   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #943

Hey little question,

any idea where I can disable the time in the chat?

Click image for larger version

Name:	Knipsel.PNG
Views:	375
Size:	54.4 KB
ID:	177061
Vulden is offline
joez252
Member
Join Date: Apr 2019
Old 09-27-2019 , 03:08   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #944


How can i fix that ?

Last edited by joez252; 09-27-2019 at 03:10.
joez252 is offline
joez252
Member
Join Date: Apr 2019
Old 10-01-2019 , 10:23   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #945

I use this plugin (s): https://forums.alliedmods.net/showthread.php?t=283212
I have this problem with everyone menus here.
I am currently using a custom menu:
PHP Code:
/*
 * MyJailbreak - Custom Menu Items Plugin.
 * by: shanapu
 * https://github.com/shanapu/MyJailbreak/
 * 
 * Copyright (C) 2016-2017 Thomas Schmidt (shanapu)
 *
 * This file is part of the MyJailbreak SourceMod Plugin.
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, version 3.0, as published by the
 * Free Software Foundation.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program. If not, see <http://www.gnu.org/licenses/>.
 */


// Includes
#include <sourcemod>
#include <sdktools>
#include <sdkhooks>
#include <cstrike>
#include <myjailbreak>
#include <mystocks>
#include <warden>
#include <myjbwarden>


// Compiler Options
#pragma semicolon 1
#pragma newdecls required

// Handles
Handle g_hCommandTrie;

// Strings
char g_sMenuFile[64];

// Start
public Plugin myinfo =
{
    
name "MyJailbreak - Custom Menu items",
    
author "shanapu",
    
description "Additional menu item per cfg",
    
version MYJB_VERSION,
    
url MYJB_URL_LINK
};

// Info
public void OnPluginStart()
{
    
//Configs Path
    
BuildPath(Path_SMg_sMenuFilesizeof(g_sMenuFile), "configs/MyJailbreak/menu_custom.cfg");
    
g_hCommandTrie CreateTrie();
}


// Here we add an new item to the beginn of the menu
public void MyJailbreak_MenuStart(int clientMenu menu)
{
    
File hFile OpenFile(g_sMenuFile"rt");

    if (
hFile == null)
    {
        
delete hFile;
        
SetFailState("MyJailbreak Menu - Can't open File: %s"g_sMenuFile);
    }
    
delete hFile;

    
KeyValues kvMenu = new KeyValues("CustomMenuItems");

    if (!
kvMenu.ImportFromFile(g_sMenuFile))
    {
        
delete kvMenu;
        
SetFailState("MyJailbreak Menu - Can't read %s correctly! (ImportFromFile)"g_sMenuFile);
    }

    if (!
kvMenu.GotoFirstSubKey())
    {
        
delete kvMenu;
        
SetFailState("MyJailbreak Menu - Can't read %s correctly! (GotoFirstSubKey)"g_sMenuFile);
    }
    do
    {
        
char sID[32];

        
kvMenu.GetString("postion"sIDsizeof(sID));
        if (!
StrEqual(sID"top"false))
        {
            continue;
        }

        
char sTitle[64];
        
char sRole[32];
        
char sFlags[64];
        
char sCommand[64];

        
kvMenu.GetSectionName(sIDsizeof(sID));
        
kvMenu.GetString("title"sTitlesizeof(sTitle));
        
kvMenu.GetString("role"sRolesizeof(sRole));
        
kvMenu.GetString("flags"sFlagssizeof(sFlags));
        
kvMenu.GetString("command"sCommandsizeof(sCommand));

        if (!
CheckVipFlag(clientsFlags))
            continue;

        if (
warden_iswarden(client))
        {
            if (
StrContains(sRole"1") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
warden_deputy_isdeputy(client))
        {
            if (
StrContains(sRole"2") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
GetClientTeam(client) == CS_TEAM_CT)
        {
            if (
StrContains(sRole"3") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
GetClientTeam(client) == CS_TEAM_T)
        {
            if (
StrContains(sRole"4") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
GetClientTeam(client) == CS_TEAM_SPECTATOR)
        {
            if (
StrContains(sRole"5") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }

        
SetTrieString(g_hCommandTriesIDsCommand);

    }
    while (
kvMenu.GotoNextKey());

    
delete kvMenu;

}


// Here we add an new item to the end of the menu
public void MyJailbreak_MenuEnd(int clientMenu menu)
{
    
File hFile OpenFile(g_sMenuFile"rt");

    if (
hFile == null)
    {
        
delete hFile;
        
SetFailState("MyJailbreak Menu - Can't open File: %s"g_sMenuFile);
    }

    
KeyValues kvMenu = new KeyValues("CustomMenuItems");

    if (!
kvMenu.ImportFromFile(g_sMenuFile))
    {
        
delete kvMenu;
        
SetFailState("MyJailbreak Menu - Can't read %s correctly! (ImportFromFile)"g_sMenuFile);
    }

    if (!
kvMenu.GotoFirstSubKey())
    {
        
delete kvMenu;

        
SetFailState("MyJailbreak Menu - Can't read %s correctly! (GotoFirstSubKey)"g_sMenuFile);
    }
    do
    {
        
char sID[32];

        
kvMenu.GetString("postion"sIDsizeof(sID));
        if (!
StrEqual(sID"bottom"false))
        {
            continue;
        }

        
char sTitle[64];
        
char sRole[32];
        
char sFlags[64];
        
char sCommand[64];

        
kvMenu.GetSectionName(sIDsizeof(sID));
        
kvMenu.GetString("title"sTitlesizeof(sTitle));
        
kvMenu.GetString("role"sRolesizeof(sRole));
        
kvMenu.GetString("flags"sFlagssizeof(sFlags));
        
kvMenu.GetString("command"sCommandsizeof(sCommand));

        if (!
CheckVipFlag(clientsFlags))
            continue;

        if (
warden_iswarden(client))
        {
            if (
StrContains(sRole"1") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
warden_deputy_isdeputy(client))
        {
            if (
StrContains(sRole"2") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
GetClientTeam(client) == CS_TEAM_CT)
        {
            if (
StrContains(sRole"3") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
GetClientTeam(client) == CS_TEAM_T)
        {
            if (
StrContains(sRole"4") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        else if (
GetClientTeam(client) == CS_TEAM_SPECTATOR)
        {
            if (
StrContains(sRole"5") != -1)
            {
                
menu.AddItem(sIDsTitle);
            }
        }
        
SetTrieString(g_hCommandTriesIDsCommand);

    }
    while (
kvMenu.GotoNextKey());

    
delete hFile;
    
delete kvMenu;
}


// What should we do when new item was picked?
public void MyJailbreak_MenuHandler(Menu menuMenuAction actionint clientint itemNum)
{
    
char command[24];

    if (
action == MenuAction_Select)
    {
        if (
IsValidClient(clientfalsetrue))
        {
            
char info[64];
            
menu.GetItem(itemNuminfosizeof(info));

            if (
GetTrieString(g_hCommandTrieinfocommandsizeof(command)))
            {
                
FakeClientCommand(clientcommand);
            }
        }
    }
    else if (
action == MenuAction_End)
    {
        
delete menu;
    }

joez252 is offline
WanekWest
Junior Member
Join Date: Jan 2018
Old 10-27-2019 , 07:51   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #946

After 21/08/19 update Warden cant put a marker.
Please fix it.
WanekWest is offline
Lial
Junior Member
Join Date: Dec 2015
Old 10-30-2019 , 15:47   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #947

i use:
armsrace.smx
catch.smx
cowboy.smx
dealdamage.smx
drunk.smx
duckhunt.smx
ffa.smx
freeday.smx
ghosts.smx
hebattle.smx
hide.smx
hud.smx
icons.smx
knife.smx
lastguard.smx
menu.smx
myjailbreak.smx
noscope.smx
oneinthechamber.smx
playertags.smx
ratio.smx
request.smx
suicide.smx
teleport.smx
war.smx
weapons.smx
zeus.smx
zombie.smx

(without warden.smx)
default configs
cant use knife on torch day. and there bugs, on next round u cant use weapons(helps only reconnecting)
how to fix?
sorry for bad english

Last edited by Lial; 10-30-2019 at 15:47.
Lial is offline
ivenuss
Junior Member
Join Date: Nov 2019
Location: Czech Republic
Old 11-30-2019 , 12:19   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #948

Is there someone who can help me edit this plugin with my features? Contact me on discord:
venus#9880
ivenuss is offline
Papero
Veteran Member
Join Date: Aug 2016
Location: Italy
Old 12-22-2019 , 13:31   Re: [CS:GO] MyJailbreak - warden, days, menu & more (Beta 14 - 13/08/18)
Reply With Quote #949

Quote:
Originally Posted by WanekWest View Post
After 21/08/19 update Warden cant put a marker.
Please fix it.
If someone else have this issue see https://github.com/shanapu/MyJailbre...ment-568290799
__________________
My Plugins
SPCode


Steam: hexer504
Telegram: Hexah
Discord: Hexah#6903

If you like my work you can donate here!
Papero is offline
consti
Junior Member
Join Date: Feb 2020
Old 02-06-2020 , 19:18   jailbreak csgo server problem
Reply With Quote #950

I installed MyJailbreak on my server and it does not work, i use the command !lr and nothing happens, also, can someone tell me which is the plugin to set a marked point in a jailbreak server?
consti is offline
Send a message via ICQ to consti Send a message via AIM to consti
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 22:03.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode