Jump to content

Jamy

Members
  • Posts

    54
  • Joined

  • Last visited

Everything posted by Jamy

  1. Jamy

    doubt modification

    even taking this &&! the compile error.
  2. Well I created an @ go to the VIP room, wanted to block players under lv 1 can not getstarted doing before when I used eAthena worked rathena use today that is not going to work, I changed pc_isGM (sd)) by (pc_get_group_level (sd) still not working. if (town == 36 &&! ​​(pc_get_group_level (sd) <1)) { clif_displaymessage (sd-> fd, "Excuse me more than you're not a VIP member."); return -1; }
  3. if you wanted to know how to make the commands become global message passing,moves when sent globally, move and eventually disappear.
  4. does anyone have any patch for fluxcp that adm's to see the logs of trade players.
  5. Was adding the command in rathena when I was testing, he kicks only players in the map command is used and not all of the server.
  6. Jamy

    doubt command

    This command causes the server to enter into maintenance so I want everyone to be kicked from the server.
  7. Jamy

    doubt command

    lighta I want to kick all of the same server kickall.
  8. Jamy

    doubt command

    How do I use this command with all of it is being applied only on the map. ACMD_FUNC(maintenance) { nullpo_retr(-1, sd);[/font][/color] if (message && *message) { if(strcmpi(message, "on") == 0) { if(runflag == MAPSERVER_ST_MAINTENANCE) { clif_displaymessage(fd, "Server already in maintenance"); } else { struct map_session_data* pl_sd; struct s_mapiterator* iter;[/font][/color] iter = mapit_getallusers(); for (pl_sd = (TBL_PC*)mapit_first(iter); mapit_exists(iter); pl_sd = (TBL_PC*)mapit_next(iter)) { if (pc_get_group_level(pl_sd) != 99) { // Only Admin(99) that will stay in maintenance clif_GM_kick(NULL, pl_sd); } } mapit_free(iter);[/font][/color] runflag = MAPSERVER_ST_MAINTENANCE; //Activate maintenance, disable all player except Admin to login chrif_maintenis(MAPSERVER_ST_MAINTENANCE); //ShowInfo("Maintenance: Onn"); clif_displaymessage(fd, "Maintenance: On"); } } else if(strcmpi(message, "off") == 0) { if(runflag == MAPSERVER_ST_MAINTENANCE) { runflag = MAPSERVER_ST_RUNNING; //Deactivate maintenance chrif_maintenis(MAPSERVER_ST_RUNNING); //ShowInfo("Maintenance: Offn"); clif_displaymessage(fd, "Maintenance: Off"); } else { clif_displaymessage(fd, "Server is not in maintenance"); } } else { clif_displaymessage(fd, "Usage: @maintenance <on|off>"); return -1; } } else { clif_displaymessage(fd, "Usage: @maintenance <on|off>"); return -1; } }
  9. Well how do I make a command is executed the same kickall all users, it has a commandof mine who is running only on the map I want to leave it to run on all players who are noton that map.
  10. You did everything you posted does not show over here.
  11. It worked more how do you show for example: Date of birth blank.
  12. Now it was perfectly. #edit I found an error if the User does not put the the date of birth it records normally.
  13. Jamy

    doubt modification

    I some how do you only player with less than 1 lv not teleport.
  14. Well I made the change Emulator eAthena rathena wanted to know how to make a change in my source is not picking up, what can be. Look for: if (sd-> bl.m> = 0 && map [sd-> bl.m]. flag.nowarpbattle_config.any_warp_GM_min_level &&> pc_isGM (sd)) { clif_displaymessage (d, msg_txt (248)); return -1; } Add this below: if (town == 28 &&! ​​pc_isGM (sd)) {/ / If @ go 28 is a map vip. Just change thenumber 28 to your map vip. clif_displaymessage (sd-> fd, "You are not vip."); return -1; } Just who is giving error in this line which can be if (town ==28&&! ​​pc_isGM(sd))
  15. Well I wanted to know how to ask for date of birth when registering in fluxcp because newhexeds deletam by date of birth.
  16. If someone could make one for eAthena, because I am still configuring rathena not have much time to move through the emulator then take a while to change.
  17. Hello I was wondering how to create a command that causes the server to enter for maintenance when typing the command giving en kick all players and not letting them connect until the command is enabledagain.
  18. I just wanted to do this customization on my server, only that
  19. If someone knows how to do this please post.
  20. can anyone know how to implement this mod? a storage password that has a number and change password menu.. anyone know how to do this? pls help! thanks!
  21. How do I put that button which is on the cash side of the mini-map anyone knows let me know.
  22. Jamy

    doubt command

    Thank xantara worked.
  23. Jamy

    doubt command

    This command and unequip items not delete.
×
×
  • Create New...