Jump to content

Like it~*

Members
  • Content Count

    175
  • Joined

  • Last visited

  • Days Won

    1

Like it~* last won the day on July 17 2019

Like it~* had the most liked content!

1 Follower

About Like it~*

  • Rank
    Advanced Member

Recent Profile Visitors

2290 profile views
  1. Hello, sorry for the delay. Thank you very much for your help so far. See the errors shown on the map-server.
  2. I tested, but don't work master.
  3. Thank you, sir. I am waiting.
  4. I took the space out and even then there are still errors and nothing changes in the appearance of the monster. - script HALL FAKE_NPC,{ OnInit: query_sql( "select sex, class, hair, hair_color, char_id from `char` where online = 1 order by name asc limit 128", .@sex, .@class, .@hairstyle, .@haircolor, .@haircolor); query_sql( "select clothes_color, name, char_id from `char` where online = 1 order by name asc limit 128", .@cloth, .@name$, .@char_id ); //monster <"map name">, <x>, <y>, <"display name">, <mob id>, <amount>[, <"event label">]; .@mobGID = monster("prontera", 157, 167, ".@name$", 2266, 1); // prevent from attacking & moving setunitdata(.@mobGID, UDT_MODE, getunitdata(.@mobGID, UDT_MODE) &~ (1 | 128)); setunitdata(.@mobGID, UDT_SCOPTION, 1); setunitdata(.@mobGID, UDT_MASTERCID, .@char_id); setunitdata(.@mobGID, UDT_LOOKDIR, 0); //appearance setunitdata(.@mobGID, UDT_SEX, .@sex); setunitdata(.@mobGID, UDT_CLASS, .@class); setunitdata(.@mobGID, UDT_HAIRSTYLE, .@hairstyle); setunitdata(.@mobGID, UDT_HAIRCOLOR, .@haircolor); setunitdata(.@mobGID, UDT_HEADTOP, 2235); setunitdata(.@mobGID, UDT_CLOTHCOLOR,.@cloth); end; } [Debug]: Source (NPC): HALL (invisible/not on a map) [Warning]: buildin_setunitdata: Character ID 0 not found for master change! [Debug]: Source (NPC): HALL (invisible/not on a map) [Error]: status_set_viewdata (MOB): No view data for class 0 @meko
  5. Working perfectly. I already said that, but I must repeat, your tool is incredible! Thank you, master!
  6. Thks @meko, you forgot to quote episode 14.2 which is not yet complete, with the implementation of WOE TE.
  7. It stayed that way, but it still does not work. - script HALL FAKE_NPC,{ OnInit: query_sql( "select sex, class, hair, hair_color, char_id from `char` where online = 1 order by name asc limit 128", .@sex, .@class, .@hairstyle, .@haircolor, .@haircolor); query_sql( "select clothes_color, name, char_id from `char` where online = 1 order by name asc limit 128", .@cloth, .@name$, .@char_id ); //monster <"map name">, <x>, <y>, <"display name">, <mob id>, <amount>[, <"event label">]; .@mobGID = monster ("prontera", 157, 167, ".@name$", 2266, 1); // prevent from attacking & moving setunitdata(.@mobGID, UDT_MODE, getunitdata(.@mobGID, UDT_MODE) &~ (1 | 128)); setunitdata(.@mobGID, UDT_SCOPTION, 1); setunitdata(.@mobGID, UDT_MASTERCID, .@char_id); setunitdata(.@mobGID, UDT_LOOKDIR, 0); //appearance setunitdata(.@mobGID, UDT_SEX, .@sex); setunitdata(.@mobGID, UDT_CLASS, .@class); setunitdata(.@mobGID, UDT_HAIRSTYLE, .@hairstyle); setunitdata(.@mobGID, UDT_HAIRCOLOR, .@haircolor); setunitdata(.@mobGID, UDT_HEADTOP, 2235); setunitdata(.@mobGID, UDT_CLOTHCOLOR,.@cloth); end; } Map-server errors: [Debug]: Source (NPC): HALL (invisible/not on a map) [Warning]: buildin_setunitdata: Invalid data type '(null)' for mob unit. [Debug]: Source (NPC): HALL (invisible/not on a map) [Error]: status_set_viewdata (MOB): No view data for class 4065 [Error]: buildin_setunitdata: Invalid value 150005 for argument #3. (min: 0, max: 8) [Debug]: Source (NPC): HALL (invisible/not on a map)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.