Search:

Type: Posts; User: Imperative

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    162
    Views
    79,012

    Re: [Release] Harepacker resurrected

    An example would be what Kyber posted, I wouldn't call it a colour "loss".

    Here's another example:

    Original image - https://image.prntscr.com/image/p9cwKNCITeK7gM5DUmfMPg.png ...
  2. Replies
    5
    Views
    1,631

    Re: How to block Map Crash in v83?

    @Modify
    That's a bad way of doing it.
    For example I can just change [DF 00 00 00] to [E0 00 00 00] (which is the pet id) or anything else in the packet (while avoiding that specific packet check)...
  3. Re: How can i make GM enable to use FJ or any skill in any maps

    CharInfoRequestHandler is what you're looking for
  4. Java Re: How to add some a GM exception and a range for the command in the post?

    Just remove the } on line 580
  5. Java Re: How to add some a GM exception and a range for the command in the post?

    What error do you get when trying to use it?
  6. Java Re: How to add some a GM exception and a range for the command in the post?

    I mean this @akh01999
    playernear != player not necessary but w/e

    } else if (splitted[0].equals("!killnear")) {
    MapleMap map = player.getMap();
    ...
  7. Java Re: How to add some a GM exception and a range for the command in the post?

    Just use what I posted lol
  8. Java Re: How to add some a GM exception and a range for the command in the post?

    } else if (splitted[0].equals("!killnear")) {
    MapleMap map = player.getMap();
    List<MapleMapObject> players = map.getMapObjectsInRange(player.getPosition(),...
  9. Replies
    4
    Views
    3,090

    Re: [Preview] MapleGalaxy ♥

    Looks nice when can I see it in action? ;)
  10. Replies
    80
    Views
    31,206

    Re: LeaderMS Final | GMS-Like

    game changer
  11. Replies
    2
    Views
    409

    Java Re: Converting VarChar from MySQL to Java

    Bolded text
  12. Replies
    5
    Views
    537

    Re: Error EventManager$1

    You should be looking at line 524 in one of your event scripts.
  13. Replies
    1
    Views
    295

    Re: HELP: TiredStory PlayerNPC

    The search button goes a long way!

    https://forum.ragezone.com/f701/disabling-npc-chat-bubbles-1072620/
  14. Replies
    5
    Views
    409

    Re: Players don't gain SP on level up

    Might want to explain what you mean a little more.
  15. Closed: Java Re: [Source] [v83] MoopleDEV | Multi Worlds | Rev 120

    Easy, make them yourself and you'll definitely find them.
  16. Replies
    0
    Views
    340

    Adding Longs in XML parse

    Title.
  17. Thread: GM Hide

    by Imperative
    Replies
    2
    Views
    521

    Re: GM Hide

    BroadcastNONGMMessage in MapleMap

    You can change the isSGM to isGM2 by using solution above, or w/e you changed it to.
  18. Replies
    3
    Views
    451

    Re: Auto-Item Works but not with pets

    According to the add-on, the code placed into ItemPickupHandler.
  19. Replies
    3
    Views
    380

    Re: mob warps you after killing it ?

    Not a reactor. KillMonster in MapleMap.


    if (monster.getId() == 9700036) {
    chr.changeMap(100000000);
    }

    There's probably a better way of doing it, but w/e.
  20. Replies
    2
    Views
    398

    Re: i'm new, i need some help

    An event script is causing this error. Check which event scripts are being run in the constants, and go from there.
  21. Replies
    3
    Views
    451

    Re: Auto-Item Works but not with pets

    Same code is required at MovePetHandler.
  22. Replies
    6
    Views
    600

    Re: Change a monsters given XP?

    WZ files...
  23. Thread: Boss NPC

    by Imperative
    Replies
    3
    Views
    795

    Re: Boss NPC

    I would rework that npc, considering it won't allow you to "Kill All Monsters" because there's some already in the map.
  24. Re: Download link for MySQL 1.2.17 Query Browser?

    Here you go sir.

    http://www.mediafire.com/download/75zhc1ns0vqsebh/mysql-gui-tools-5.0-r17-win32.msi
  25. Replies
    15
    Views
    1,293

    Re: Help for some errors?

    What script file? All you need is the SQL provided.
  26. Replies
    15
    Views
    4,167

    Closed: Re: v83 NullPointerException error (MoopleDEV)

    Process of elimination.
  27. Replies
    15
    Views
    1,293

    Re: Help for some errors?

    That probably would've been a good idea from the start.

    http://forum.ragezone.com/f427/source-v83-heliosms-738943/

    I believe this is where I downloaded it from a while ago. gl and hf.
  28. Replies
    15
    Views
    1,293

    Re: Help for some errors?

    Just re-execute



    DROP TABLE IF EXISTS `telerockmaps`;CREATE TABLE `telerockmaps` (
    `trockid` int(11) NOT NULL AUTO_INCREMENT,
    `characterid` int(11) NOT NULL,
    `mapid` int(11) NOT NULL,...
  29. Replies
    15
    Views
    1,293

    Re: Help for some errors?

    Sounds promising. Just change the column name from charid to characterid.
  30. Replies
    15
    Views
    1,293

    Re: Help for some errors?

    Lol, where did you get your SQL exactly?


    DROP TABLE IF EXISTS `telerockmaps`;CREATE TABLE `telerockmaps` (
    `trockid` int(11) NOT NULL AUTO_INCREMENT,
    `charid` int(11) NOT NULL,
    `mapid`...
  31. Replies
    34
    Views
    1,761

    Re: I REALLY need help here!

    In MySQL File > New Script Tab

    Execute.



    DROP TABLE IF EXISTS `skillmacros`;
    CREATE TABLE `skillmacros` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `characterid` int(11) NOT NULL DEFAULT...
  32. Replies
    14
    Views
    1,047

    Re: HeliosMS log in problem.

    No you don't lol. What's the purpose of forwarding those two for hamachi? Might as well use your own IP.
  33. Replies
    14
    Views
    1,047

    Re: HeliosMS log in problem.

    Wat. Absolutely no ports needed to be portforwarded when using hamachi.
  34. Re: An NPC having UndeclaredThrowableException - Clean MoopleDevRev120 v83

    :blush:Oops, Thanks sonny.
  35. Re: An NPC having UndeclaredThrowableException - Clean MoopleDevRev120 v83

    That won't work either. You're missing the actual variable ServerName in Server Constants.


    public static final String ServerName = "ServerName";
  36. Re: non-static method cannot be referenced from a static content

    else if (splitted[0].equalsIgnoreCase("polloption")) {

    String newOption = joinStringFrom(splitted, 1);
    if (c.getChannelServer().addVoteOption(newOption)) {
    ...
  37. Replies
    38
    Views
    8,279

    Re: MapleStory Forum Rank Titles !

    I'm not the one pointing fingers. :huh:
  38. Re: display npc id and name in map *lithium based*

    There is lol, His command was built around that.


    public static class LookNPC extends CommandExecute {
    public int execute(MapleClient c, String[] splitted) {
    ...
  39. Replies
    4
    Views
    450

    Re: Create a server

    Just post exactly which parts you fail at.
  40. Replies
    38
    Views
    8,279

    Re: MapleStory Forum Rank Titles !

    Suspicious of claiming someone else's work as your own lol. Looks pretty awesome.
  41. Replies
    2
    Views
    523

    Re: A few command questions

    } else if (splitted[0].equalsIgnoreCase("autorebirth")) {
    if (c.getPlayer().haveItem(itemId)) {
    player.autoreborn = !player.autoreborn;
    ...
  42. Replies
    2
    Views
    549

    Re: NPC problems

    Did he give you the SQL?
  43. Replies
    2
    Views
    346

    Re: a little npc script help

    It's a ternary operator, it calls the expression depending on the condition. It's basically an if else statement
    In your case if sel == 1,

    it'll display "Dragon" weapon.

    if not it'll display...
  44. Replies
    2
    Views
    573

    Re: Simple NPC scripting help

    1. AbstractPlayerInteraction

    public boolean canHold(int itemid) { return c.getPlayer().getInventory(MapleItemInformationProvider.getInstance().getInventoryType(itemid)).getNextFreeSlot() >...
  45. Replies
    7
    Views
    2,727

    Re: [v83] Boss PQ Script

    Use [CODE] tags next time lol. Also make sure you're in a party and the leader of party.
  46. Replies
    7
    Views
    2,727

    Re: [v83] Boss PQ Script

    Or use google. http://forum.ragezone.com/f427/bosspq-selfcopy-bat-550810-post4816485/
    Although you have to fix things here and there.
  47. Replies
    5
    Views
    2,830

    Re: Maplestory Events for v83

    GM commands.
  48. Replies
    12
    Views
    766

    Re: [HELP] ExiledMS

    Says it there. The ports are already in use. Find out what's using those ports.
  49. Replies
    12
    Views
    766

    Re: [HELP] ExiledMS

    Go into wz directory click Etc.wz and open up CashPackage.img replace that with this.


    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><imgdir name="CashPackage.img">
    <imgdir...
  50. Replies
    12
    Views
    766

    Re: [HELP] ExiledMS

    Or you can just download it here https://mega.co.nz/#!TAdgRBrS!ff2jK2b9Q5F03Lu3F07j4HbyrV4x61ZGQpYwQjHhgo0
    Make a folder named WZ like so http://prntscr.com/2gcltk and place the files in there.
Results 1 to 50 of 59
Page 1 of 2 1 2

Advertisement