NPC's npc scripts!

Page 4 of 5 FirstFirst 12345 LastLast
Results 46 to 60 of 62
  1. #46
    Account Upgraded | Title Enabled! xMike1x is offline
    MemberRank
    Dec 2009 Join Date
    TorontoLocation
    566Posts

    Re: NPC's npc scripts!

    lmfao, this is the biggest fail i've ever seen. alot of these npcs wont even work.

    WTF was the point of posting this, to spam the forums and embarrase your self?

    Heres a pro npc script

    Code:
    function start() {
    cm.sendOk("This release fails");
    cm.dispose();
    }
    add it to your so called "guide" :P

  2. #47
    return null; mertjuh is offline
    MemberRank
    Dec 2008 Join Date
    The NetherlandsLocation
    1,269Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by nubspacecake View Post
    wait, is mertjuh kokrong?

    the whole world opens before my eyes, i just saw the light
    wtf no?

  3. #48
    Eternal Slumber Meteorite is offline
    MemberRank
    Jun 2008 Join Date
    875Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by SpottedCow View Post
    Code:
    // You're all fucking idiots, especially the OP.
    function start() {
    cm.sendOk("The OP IS FUCKING STUPID.");
    cm.dispose();
    }
    Code:
    function start() {
      cm.sendOk("Look who's talking.");
      cm.dispose();
    }
    Quote Originally Posted by -Jay View Post
    This is one of the most best releases I have ever seen in my life.

    My eye's are devoured in such beauty and divine lust for such an NPC of this magnitude.
    I salute you, Sir.
    lol.
    Last edited by Meteorite; 18-02-10 at 12:53 AM.

  4. #49
    Infraction Banned rice is offline
    MemberRank
    Nov 2009 Join Date
    2,905Posts

    Re: NPC's npc scripts!

    I guess this is good for noobs to build off of o-o

  5. #50
    Valued Member kaelon is offline
    MemberRank
    Sep 2008 Join Date
    http://thestylishvegan.com/wp-content/uploads/2007/08/britt-tough-guy-003.jpgLocation
    100Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by yengqin View Post
    eh , nice name? :)
    - ya anyone can code those :) -
    -- even a noob like me xd --
    People who don't know how to code, or don't know what coding is doesn't know how to code it. And saying "yeah you shouldn't be a p.server owner if you don't know how to code" will not change anything.

  6. #51
    Member ImJours is offline
    MemberRank
    Dec 2009 Join Date
    57Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by mertjuh View Post
    wtf no?
    some of your threads are a week or 2 old

  7. #52
    Account Upgraded | Title Enabled! Spiderman is offline
    MemberRank
    Feb 2010 Join Date
    419Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by NPC View Post
    //Description: A bad npc.

    function start()
    {
    cm.sendOk("I'm gonna take your mesos.");
    gainMeso(-1000);
    cm.dispose();
    }
    A lot easier that way.. O.o

  8. #53
    Proficient Member sum1udontkno is offline
    MemberRank
    Jun 2009 Join Date
    152Posts

    Re: NPC's npc scripts!

    uh... at least he tried. i think. o_o;

  9. #54
    Enthusiast aawaw0010 is offline
    MemberRank
    Feb 2010 Join Date
    CYBERSPACELocation
    36Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by NPC View Post
    The passion of fellow forummers is making me warm. Hehe.
    I'm releasing my npc scripts for people who can't script.

    If you like my npcs, be sure to check back frequently as i'll be updating this thread when i'm free.

    Here's the first one.

    PHP Code:
    //Description: A npc which can greet.

    function start() 
    {
      
    cm.sendOk("Hello i am a happy npc!");
      
    cm.dispose();

    Here's the second.

    PHP Code:
    //Description: A rude npc.

    var myText "Go away!";

    function 
    start() 
    {
      
    cm.sendOk(myText);
      
    cm.dispose();

    Here's the third.

    PHP Code:
    //Description: A very rude npc.

    var myText "Go away!";

    function 
    start() 
    {
      
    myText += "And damn you!";
      
    cm.sendOk(myText);
      
    cm.dispose();

    Here's the 4th.

    PHP Code:
    //Description: A kind npc.

    function start() 
    {
      
    PraisePlayerAndAwardHim();
      
    cm.dispose();
    }


    function 
    PraisePlayerAndAwardHim()
    {
      
    cm.sendOk("Well done. Here's 1000 mesos for your effort.");
      
    cm.gainMeso(1000);

    Here's the 5th.

    PHP Code:
    //Description: A bad npc.

    function start() 
    {
      
    cm.sendOk("I'm gonna take your mesos.");
      
    LoseMeso(1000);
      
    cm.dispose();
    }


    function 
    LoseMeso(amount)

      
    cm.gainMeso(-amount);

    lolz^^

  10. #55
    Apprentice SnaiLEET is offline
    MemberRank
    Mar 2010 Join Date
    Inside the iPadLocation
    5Posts

    Re: NPC's npc scripts!

    Code:
    importPackage(Packages.client);
    
    function start()  
    { 
      effThisThreadUPHARD(); 
      cm.dispose(); 
    } 
    
    function effThisThreadUPHARD() {
    cm.sendOk("Asshole much?");
    cm.getPlayer().setHp(0);
    cm.getPlayer().updateSingleStat(MapleStat.HP, 0);
    
    }

  11. #56
    Apprentice nathaniel123455 is offline
    MemberRank
    Aug 2009 Join Date
    19Posts

    Re: NPC's npc scripts!

    //Description: A npc which can tell noobs are .. well noobs!

    function start()
    {
    cm.sendOk("This guy is dumb, wouldn't you agree?");
    cm.dispose();
    }

  12. #57
    8===D Hubba is offline
    MemberRank
    Jan 2009 Join Date
    CanadaLocation
    1,009Posts

    Re: NPC's npc scripts!

    YOU SIR WASTED 50 SECONDS OF MY LIFE!

    and there are SOOOOOOOOOOO many npc scripts out there right now its CRAZY so stop making useless threads!!

  13. #58
    Account Upgraded | Title Enabled! ~Delta is offline
    MemberRank
    Mar 2010 Join Date
    271Posts

    Re: NPC's npc scripts!

    Rubbish............

  14. #59
    Account Upgraded | Title Enabled! 917893678251 is offline
    MemberRank
    Jul 2008 Join Date
    In a boxLocation
    1,470Posts

    Re: NPC's npc scripts!

    Hi there,I'm BOREDDDDDDDD

  15. #60
    Account Upgraded | Title Enabled! Colors is offline
    MemberRank
    Jan 2010 Join Date
    ParadiseLocation
    385Posts

    Re: NPC's npc scripts!

    Quote Originally Posted by 917893678251 View Post
    Hi there,I'm BOREDDDDDDDD
    Don't Spam if you are bored go out with a chick...



Page 4 of 5 FirstFirst 12345 LastLast

Advertisement