Jump to content

Miud00

Members
  • Content Count

    7
  • Joined

  • Last visited


Reputation Activity

  1. Like
    Miud00 reacted to Caspian in Need NPC Cash Manager !   
    I have one, you can send me a private message if you want!
  2. Like
    Miud00 got a reaction from Caspian in Need NPC Cash Manager !   
    I'm sorry man, tanks a lot again!! 
    i'm not find a Cash Manager funtional in there, but the events are cool!!
    you're god!
  3. Like
    Miud00 reacted to Caspian in Need NPC Cash Manager !   
    You don't need to apologize about your english in every topic you make.
    Most of the people here don't have english as the first tongue, so they don't care if you make a mistake.
    You can find lots of things here including events if you search in the forum.
     
     
     
  4. Like
    Miud00 reacted to Luciar in NEED functional! -PVP Without Donates or custon   
    Check this setting option in conf/map/battle/items.conf
    https://github.com/HerculesWS/Hercules/blob/master/conf/map/battle/items.conf#L108
    Option 3 will unequip disabled items/cards on joining the map with the mapflag.
    This will change the behavior for any time a player enters any map with disabled items server wide.
     
  5. Like
    Miud00 got a reaction from Caspian in Need Help with VIP ROOM script   
    Tank you all guys, 
    thank you very much !! it works perfect you guys are awesome, 
    i just change "getgmlevel" to '"getgroupid" 
    prontera,156,196,5    script    Porteiro VIP    965,{
    if (getgroupid() < $levelvip){
    mes $namenpc$;
    thanks @Dangerous @Luciar
  6. Like
    Miud00 reacted to Luciar in Need Help with VIP ROOM script   
    I was just coming back to edit my post with regard to this!
    @Miud00 
    note that getgmlevel() returns the Level of the group to which the player is assigned. (See level below)
    getgroupid() returns the group ID of the group to which the player is assigned. (See id below)
    As defined in conf/groups.conf
    { id: 1 name: "Group" inherit: ( "" ) level: 0 ...  
  7. Like
    Miud00 reacted to Luciar in Need Help with VIP ROOM script   
    This script could use a few updates on syntax and modern scripting conventions. As always try referring to the /doc/ and doc/sample directories in Hercules for best practices, examples, and script command documentation.
     
    Try Replacing this:  
    if (getgmlevel() >= $minlvgm) set .@menu$,select("- Entrar na sala VIP","- Administrar VIPs","","- Nada"); else set .@menu$,select("- Entrar na sala VIP","","- Dias restantes de VIP","- Nada"); switch(.@menu$){  
    With This:
    if (getgmlevel() >= $minlvgm) .@menu = select("- Entrar na sala VIP","- Administrar VIPs","","- Nada"); else .@menu = select("- Entrar na sala VIP","","- Dias restantes de VIP","- Nada"); switch (.@menu) { Note that the select() script command will return an INTEGER value corresponding to the menu option selected, not a string. Furthermore, switch() will not accept a string as an argument.
    Let me know if that fixes your problem. I have not reviewed the entire script.
  8. Like
    Miud00 reacted to Caspian in Need Help with VIP ROOM script   
    Just change "getgmlevel" to '"getgroupid" .
     
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.