Jump to content

AllHailToTheKing

Members
  • Posts

    235
  • Joined

  • Last visited

Posts posted by AllHailToTheKing

  1. 1. there are other ways to protect your server except with harmony.

     

    2. there is written you should contact the harmony support. we are not the harmony support.

    but harmony is the most protected , but i think the owner is busy. he is not replying any support.  i know there is written that i should contact the harmony and i already did, but they never reply four days now

  2. I know this is not the harmony support but harmony doesn't reply its been 3 days now. please delete this if its not allowed and  im sorry.

     

    i would like to ask for some help. im stuck here in installing harmony. i tried the automatic installer and the manual still getting the same error.

     

    Please see the picture attach. 

     

     

    Thanks rA.

    post-479-0-76078500-1387291045_thumb.png

  3. Well, it's clear that your server can't connect to MySQL Server.

    Do you host your SQL on different server?

    Try using something like Navicat to try the connection, if you can login via navicat, then sure it's a configuration problem.

    thank you miles its already fix. the data center had a power outage.

  4. Are you using anything like eAmod, or harmony?

    Since that might cause some problems on the SQL tables.

    If yes, you should check the server console registers for any error (usually when you login).

     

    Or when loading server, it might show some errors.

    Just don't turn off the Warnings nor error messages on the conf files.

     

     

    hi the problem just show up now. cant run my server.

     

    m[sql]
    m: 
    m[sql]
    m: Can't connect to MySQL server on '211.*.*.*'' (113)
     
    m[Debug]
    m: at loginlog_sql.c:110
    Can't connect to MySQL server on '211.*.*.*'' (113)
     
    m[sql]
    m: Can't connect to MySQL server on '211.*.*.*' (113)

  5. Edit your groups.conf, deny the use of autotrade for gmlevel 0, then create a new script with bindatcmd.

    -	script	denyautotrade	-1,{
    OnInit:
        bindatcmd("trade","denyautotrade::OnActivate");
    	setarray .allow[0],4058,4064,4071,4078,4086,4087,4100,4107,4112;
        end;
    OnActivate:
    	for( set .@i, 0; .@i < getarraysize(.allow); set .@i, .@i +1 ) {
    		if(class != .allow[.@i]) {
    			dispbottom "Autotrade function is available only for Mechanics and Genetics.";
    			end;
    		}
    	}
        atcommand "@autotrade";
        end;
    }
    

    The current command is @trade, but you can change it to anything you want.

     

    thank you

  6. Normally whoever has cart can use @at, maybe you have a custom mod which does this or you have a custom script which gives your player a cart.

     

     

    i put @autotrade on normal players. is that why they can use in whatever job? or should i put @at only so that only mechanic and genetic can use only autotrade command?

  7. following this. having this same problem. on my server thanatos look like its not working.. if you use thanatos on player with high vit thanatos will deal more damage on that player. i tried thanatos and without thanatos card on player with high vit. no change has been made at all. 



    bump

  8. i wanna ask if this is normal. any job on my server can use @autotrade/@at command. if im not wrong i know that only genetic and mechanic or whoever has a cart can use @autotrade?

     

    i want to disable @autotrade to all job except for those who has a cart like genetic and mechanic.

     

    Thanks rA

  9. Open trunk/src/map/clif.c and find this line:

    if (type == 2 /* && (pc_get_group_level(sd) > 0 || sd->bl.id != id)*/)

    Change it to:

    if (type == 2 && (pc_get_group_level(sd) > 0 || sd->bl.id != id))

     

     

    brian i just tried this right now. but seems not working. 

     

    //If type is 2 and the ids don't match, this is a crafted hacked packet!    //Disabled because clients keep self-muting when you give players public @ commands... [skotlex]    if (type == 2 && (pc_get_group_level(sd) > 0 || sd->bl.id != id))        return;
     
    this is what i put and tried to spam on the server nothing happens
  10. Aaaah, nevermind. This wont work. There is an error in my logic... sorry. T_T

     

    Try this:

    bonus bDelayRate, (isequipedcnt(2703) == 2) ? -30 : -30 / isequipedcnt(4403));
    

    i was about to reply that 2 kiel is working even without er. will try this new script. one sec

    Thanks

  11. bonus bDelayRate, (getequipid(EQI_ACC_L) == 2703 && getequipid(EQI_ACC_R) == 2703) ? -30 : -30 / (getequipcardcnt(EQI_HEAD_TOP) + getequipcardcnt(EQI_HEAD_MID) + getequipcardcnt(EQI_HEAD_LOW));

    .. should work

     

     

    thanks will try this

  12. i would like to request a script for my kiel card with some modification.

     

     4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,-30; },{},{} 

       here is my currently script for my kiel card.

     

    i want to disable using 2 kiel card at the same time. if you use 2 kiel card only 1 kiel card will work. but if you have 2 expert ring you can use 2 kiel card. 

     

    like a combo item. 2kiel will work only when you have 2 expert ring.

     

    2 kiel card will not stock if you dont have 2 expert ring.

     

     

    Thanks rA.

  13. Actually, maybe you should search your whole /trunk folder because the nocommand mapflag might be in /conf or /npc or somewhere else, or in a source edit.

    It's easy in Notepad++ Keu2xAT.png

    PS: are you sure you don't have any source edit that adds the nocommand mapflag?

     

     

    Brian thank you i already found some npc that put a mapflag at that map. Thank you so much  

    guild_vs5.gat    mapflag    nocommand    10
    guild_vs4.gat    mapflag    nocommand    10
    guild_vs3.gat    mapflag    nocommand    10
    guild_vs2.gat    mapflag    nocommand    10
    guild_vs1.gat    mapflag    nocommand    10

  14. Other Flags: NoCommand |

    ^ that's why your GMs can't use commands on that map!

    Somewhere, you either have a script or source edit that is setting mapflag#nocommand.

    If you use Notepad++ on Windows, use "Find in Files" to search your whole /npc folder for nocommand. On Linux, you can search all files in a folder with grep:

    grep -Hr -e nocommand /path/to/trunk/npc/

    i have to search all my whole npc folder and look for nocommand?

  15. Go in-game and warp to your gvg map (where @commands are not working for your Event GMs) and type @mapinfo to see if 'nocommand' mapflag is set on that map.

    thanks brian for replying appreciate it. here is the map info.

    2wdx1u9.png

×
×
  • Create New...