How to add a custom reward/voting system. (NON TIMED)

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 49
  1. #16
    offonline King Grub is offline
    MemberRank
    Aug 2009 Join Date
    Spring fieldLocation
    3,303Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Umh, try with newpoint or newpoints

  2. #17
    Enthusiast huubm is offline
    MemberRank
    Jul 2008 Join Date
    26Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Code:
    symbol  : variable newpoint
    location: class client.MapleCharacter
            this.FascinationPoints = newpoint;
    This is the problem :O

  3. #18
    Account Upgraded | Title Enabled! iAndy is offline
    MemberRank
    Nov 2009 Join Date
    474Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Quote Originally Posted by huubm View Post
    Code:
    symbol  : variable newpoint
    location: class client.MapleCharacter
            this.FascinationPoints = newpoint;
    This is the problem :O
    Add private int newpoint; at the top under private int votingpoints; is how I fixed it, not sure if it's the fix though.

  4. #19
    offonline King Grub is offline
    MemberRank
    Aug 2009 Join Date
    Spring fieldLocation
    3,303Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Just add a ( S )

  5. #20
    Apprentice jojo250 is offline
    MemberRank
    Dec 2009 Join Date
    22Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    public void setMarried(int m) {
    this.married = m;
    }
    i cant find this in maplecharacter.java anyhelp im new on this :-)

    ---------- Post added at 01:56 AM ---------- Previous post was at 01:32 AM ----------

    sorry for double posts and playercommand.java :D?

  6. #21
    Member Lup1nKira is offline
    MemberRank
    Aug 2009 Join Date
    88Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Great Guide! Hopefully some people will learn from this!

  7. #22
    Account Upgraded | Title Enabled! HorrorChix89 is offline
    MemberRank
    May 2010 Join Date
    ArkansasLocation
    1,279Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    A few questions:

    1. Is this for vote points only? (stupid question)
    2. How would I change it to make it BOTH Vote Points and Vote for NX?
    3. It's non-timed...can I make it timed? (like every 12hrs)

    Thanks for the info, I'm new to this and trying my best to learn. :D
    Last edited by HorrorChix89; 26-05-10 at 06:38 PM.

  8. #23
    I'm sexy and I know it :) Deagan ツ is offline
    MemberRank
    Oct 2008 Join Date
    clubs ;\Location
    1,317Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Quote Originally Posted by HorrorChix89 View Post
    A few questions:

    1. Is this for vote points only? (stupid question)
    2. How would I change it to make it BOTH Vote Points and Vote for NX?
    3. It's non-timed...can I make it timed? (like every 12hrs)

    Thanks for the info, I'm new to this and trying my best to learn. :D
    it links to a thread which teaches you how to make it timed.
    Also, nx is already there.

  9. #24
    Account Upgraded | Title Enabled! HorrorChix89 is offline
    MemberRank
    May 2010 Join Date
    ArkansasLocation
    1,279Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Quote Originally Posted by deagan View Post
    it links to a thread which teaches you how to make it timed.
    Also, nx is already there.
    Ok thanks, sorry for the noobs questions

  10. #25
    Enthusiast stagoms is offline
    MemberRank
    Oct 2008 Join Date
    38Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    I get the following error when I compile:
    Code:
    init:
    Deleting: C:\Users\Marvin\Desktop\compile\build\built-jar.properties
    deps-jar:
    Updating property file: C:\Users\Marvin\Desktop\compile\build\built-jar.properties
    Compiling 2 source files to C:\Users\Marvin\Desktop\compile\build\classes
    C:\Users\Marvin\Desktop\Power-Story\src\scripting\npc\NPCConversationManager.java:177: cannot find symbol
    symbol  : method saveToDB(boolean)
    location: class scripting.npc.chr
            chr.saveToDB(true); // No more stupid rollbacks ;) ~Deagan
    1 error
    C:\Users\Marvin\Desktop\compile\nbproject\build-impl.xml:406: The following error occurred while executing this line:
    C:\Users\Marvin\Desktop\compile\nbproject\build-impl.xml:196: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 1 second)
    I need some help, please.
    Marvin

  11. #26
    iamTheKing NyCPirate is offline
    MemberRank
    Aug 2009 Join Date
    c.getNyC.posLocation
    1,746Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    scripting\npc\NPCConversationManager.java
    Check over your npcconversationmanager

  12. #27
    Enthusiast stagoms is offline
    MemberRank
    Oct 2008 Join Date
    38Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Quote Originally Posted by NyCPirate View Post
    scripting\npc\NPCConversationManager.java
    Check over your npcconversationmanager
    I deleted the row, no error...

    Is it bad if I delete it?

  13. #28
    I'm sexy and I know it :) Deagan ツ is offline
    MemberRank
    Oct 2008 Join Date
    clubs ;\Location
    1,317Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    you can delete savetodb without trouble.

  14. #29
    Member kurosaii is offline
    MemberRank
    Jun 2010 Join Date
    Florida, USALocation
    70Posts

    Re: How to add a custom reward/voting system. (NON TIMED)

    Any idea why I'm getting:
    PHP Code:
    cannot find symbol
    symbol  
    method getPlayer()
    location: class client.MapleCharacter
            
    return getPlayer().getvotingpoints();

    cannot find symbol
    symbol  
    method getPlayer()
    location: class client.MapleCharacter
            getPlayer
    ().setvotingpoints(newpoints);

    cannot find symbol
    symbol  
    method getPlayer()
    location: class client.MapleCharacter
            getPlayer
    ().gain1votingpoint(); 
    ?

  15. #30
    Apprentice razz04 is offline
    MemberRank
    Jun 2010 Join Date
    17Posts

    Showoff Re: How to add a custom reward/voting system. (NON TIMED)

    Thank you :)
    It is awsome.
    Last edited by razz04; 10-07-10 at 09:17 PM.



Page 2 of 4 FirstFirst 1234 LastLast

Advertisement