Jump to content

Recommended Posts

Posted

@stolao my server keep promt out error 

[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
 
really appreciative your help if can guide me to solve the error  /panic
Posted

 

@stolao my server keep promt out error 

[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
 
really appreciative your help if can guide me to solve the error  /panic

 

 This is simply a bug in the initialization of the script, because i disable the npcs at the begining of the script, and again a short while later (can't remove an npc you already removed), ill post a fix for this since is misleading

 

Does everything else work fine?

  • Upvote 1
Posted

 

 

@stolao my server keep promt out error 

[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).
 
really appreciative your help if can guide me to solve the error  /panic

 

 This is simply a bug in the initialization of the script, because i disable the npcs at the begining of the script, and again a short while later (can't remove an npc you already removed), ill post a fix for this since is misleading

 

Does everything else work fine?

 

Thanks 1st @Stolao  /thx

Posted

@stolao my server keep promt out error

[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).

[Error]: npc_enable: Attempted to show a non-existing NPC 'mazeroadblock' (flag=1).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).

[Error]: npc_enable: Attempted to hide a non-existing NPC 'MazePrize' (flag=0).

really appreciative your help if can guide me to solve the error /panic

This is simply a bug in the initialization of the script, because i disable the npcs at the begining of the script, and again a short while later (can't remove an npc you already removed), ill post a fix for this since is misleading

Does everything else work fine?

Thanks 1st @Stolao /thx

Welcome.

Let me know if there is anything I can add/ improve on.

Posted

What about a NPC for the PvP Ladder o: ? also a feature that when they kill X number of times the same player it will warp the killer abuse to the save point (?) what about pvp points too o:? when they kill a player in desired map they will get pvp points o:! cool script o;!

Posted

What about a NPC for the PvP Ladder o: ? also a feature that when they kill X number of times the same player it will warp the killer abuse to the save point (?) what about pvp points too o:? when they kill a player in desired map they will get pvp points o:! cool script o;!

can do all of these, ill get to work on it tomorrow after work.

ty for suggestions

Posted

 

What about a NPC for the PvP Ladder o: ? also a feature that when they kill X number of times the same player it will warp the killer abuse to the save point (?) what about pvp points too o:? when they kill a player in desired map they will get pvp points o:! cool script o;!

can do all of these, ill get to work on it tomorrow after work.

ty for suggestions

 

 

Yup no problem o: until tomorrow DD: ? well np then i will go to ther stuff on my serv. the thing is i need a second pvp ranking and npc an do son o:! but yeah, that would be nice! k have a nice day ;D 

  • 2 months later...
  • 3 weeks later...
Posted

Update

1.5B Fixed a bug with storeall and item check -[Thanks Digos]
1.5C Fixed a hang screen in ( $@Cost[0] && $@Cost[1] ) -[Thanks Digos]

Update

Added Weapon Mastery 1.11
Posted (edited)

NPC shop
I am noob plz help . I want to change all the price item Zeny into Token


nvm sir :) I did it
but could u plz check this for me , i cant add this npc
 
 
Thank you

 

 



prontera,146,185,1, script Mithril Coin Exchanger 445,{

 mes "[Coin Exchanger]";
 mes "I Can Change Coins and Zeny";
 next;
 mes "[Coin Exchanger]";
 mes "Do You Want To Continue?";
 menu "Yes",-,"No",G_no;
 next;
 mes "[Coin Exchanger]";
 mes "What Do You Want?";
 menu "Mithril Coin To Zeny",-,"Zeny To Mithirl Coin",-,"Gold Coin to Zeny",-,"Zeny to Gold Coin",ztc;
 next;
 mes "[Coin Exchanger]";
 mes "Put the Number of Coin you Need";
 input .@t;
 if( .@t < 0 )||( countitem(674) < .@t ){ close; }
 set Zeny,Zeny+1000000000*.@t;
 delitem 674,.@t;
ztc:
 mes "[Coin Exchanger]";
 mes "Put The Number of Coin to be Change";
 input .@t;
 if (checkweight(674,.@t)) {
 if( Zeny < 1000000000*.@t ){ close; }
 set Zeny,Zeny-1000000000*.@t;
 getitem 674,.@t;
 } else {
 mes "You don't have enough space in your inventory.";
ztc:
 mes "[Coin Exchanger]";
 mes "Put the Number of Coin you Need";
 input .@t;
 if( .@t < 0 )||( countitem(671) < .@t ){ close; }
 set Zeny,Zeny+100000000*.@t;
 delitem 671,.@t;

ztc:
 mes "[Coin Exchanger]";
 mes "Put The Number of Coin to be Change";
 input .@t;
 if (checkweight(671,.@t)) {
 if( Zeny < 100000000*.@t ){ close; }
 set Zeny,Zeny-100000000*.@t;
 getitem 671,.@t;
 } else {
 mes "You don't have enough space in your inventory.";
}
close;
G_no:
    mes "[Coin Exchanger]";
    mes "Please use my service next time";
    close;

 

end;
}

 

Edited by billbin
Posted

NPC shop

I am noob plz help . I want to change all the price item Zeny into Token

nvm sir :) I did it

but could u plz check this for me , i cant add this npc

 

 

Thank you

 

 

prontera,146,185,1, script Mithril Coin Exchanger 445,{

 mes "[Coin Exchanger]";

 mes "I Can Change Coins and Zeny";

 next;

 mes "[Coin Exchanger]";

 mes "Do You Want To Continue?";

 menu "Yes",-,"No",G_no;

 next;

 mes "[Coin Exchanger]";

 mes "What Do You Want?";

 menu "Mithril Coin To Zeny",-,"Zeny To Mithirl Coin",-,"Gold Coin to Zeny",-,"Zeny to Gold Coin",ztc;

 next;

 mes "[Coin Exchanger]";

 mes "Put the Number of Coin you Need";

 input .@t;

 if( .@t < 0 )||( countitem(674) < .@t ){ close; }

 set Zeny,Zeny+1000000000*.@t;

 delitem 674,.@t;

ztc:

 mes "[Coin Exchanger]";

 mes "Put The Number of Coin to be Change";

 input .@t;

 if (checkweight(674,.@t)) {

 if( Zeny < 1000000000*.@t ){ close; }

 set Zeny,Zeny-1000000000*.@t;

 getitem 674,.@t;

 } else {

 mes "You don't have enough space in your inventory.";

ztc:

 mes "[Coin Exchanger]";

 mes "Put the Number of Coin you Need";

 input .@t;

 if( .@t < 0 )||( countitem(671) < .@t ){ close; }

 set Zeny,Zeny+100000000*.@t;

 delitem 671,.@t;

ztc:

 mes "[Coin Exchanger]";

 mes "Put The Number of Coin to be Change";

 input .@t;

 if (checkweight(671,.@t)) {

 if( Zeny < 100000000*.@t ){ close; }

 set Zeny,Zeny-100000000*.@t;

 getitem 671,.@t;

 } else {

 mes "You don't have enough space in your inventory.";

}

close;

G_no:

    mes "[Coin Exchanger]";

    mes "Please use my service next time";

    close;

 

end;

}

The best way to find out if something works is to test it, also this is not one of my scripts for general script support visit the script support section.

 

As for an answer by just reading it, you used the "ztc:" lable multiple times that alone will give you a debug message in our start-up

  • 3 months later...
  • 3 weeks later...
Posted

Update Ex_Job_Master 3.38 - > 3.3B

v3.39 fixed missing ')' on line 172
v3.3A Fixed error in menu generation when off default settings
v3.3B Added a check forces character to novice from high novice

Update Daily Rewards 1.58 -> 1.59

1.59 Serveral Edit Undocumented to fix

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...