Jump to content

gunvald

Members
  • Posts

    50
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by gunvald

  1. Can anyone help me how to fix this? I tested it on monsters and it works perfectly. But when I use it on MVPs, nothing happens.. only the spawns are hit. Thanks in advance~
  2. woah...this is what exactly I am looking for...thx you Emistry
  3. Is it possible that when I whisper to npc:atcommand, a dialog box will appear and you will input a player's name then it has two option: the first option is you will search a certain command used by the player and it will display the time and map where it happens...the second option is gonna display all the command used by the player.. Hope this is possible Any help would be greatly appreciated!
  4. I'm getting this error when recompiling with latest rathena svn: 1>i:\rathena\src\map\script.c(10233): warning C4047: 'function' : 'Related_Log_Info *' differs in levels of indirection from 'int' 1>i:\rathena\src\map\script.c(10233): warning C4024: 'pc_delitem' : different types for formal and actual parameter 2 1>i:\rathena\src\map\script.c(10233): error C2198: 'pc_delitem' : too few arguments for call 1>i:\rathena\src\map\script.c(10268): warning C4133: 'function' : incompatible types - from 'item *' to 'Related_Log_Info *' 1>i:\rathena\src\map\script.c(10268): warning C4047: 'function' : 'item *' differs in levels of indirection from 'int' 1>i:\rathena\src\map\script.c(10268): warning C4024: 'pc_additem' : different types for formal and actual parameter 3 1>i:\rathena\src\map\script.c(10268): error C2198: 'pc_additem' : too few arguments for call
  5. maybe, it has something to do with texture files...you're missing the images for the skills..
  6. gunvald

    FluxCP

    why is my flux cp showing the server status as offline even if its online?? Please Help any help would be greatly appreciated!
  7. thx master annie Im gonna use the storagelist2 thx again!
  8. Can you make it show like your itemlist script? Thx annieruru!! More power!!
  9. Is it possible for a script to show someone's storage in an npc dialog box?? And also shows if it has a card... Any help would be greatly appreciated Thx!!!
  10. thx annieruru, you're the best! Thx also emistry Thx for the fast reply
  11. i mean, i just want it to show only the equipped items
  12. ..... it's too long so hard to separate the script of showing the equips...
  13. When I input an online player name... it will show its equipment and the card in it if any.... and if it is offline, it will show, "You can only use this if the character is online" THX!!! Any help would be greatly appreciated!
  14. thanks everyone!! ill try to understand your script AnnieRuRu thx again!
  15. what should be the correct code?? this is my first time to use array... sorry
  16. I want it to display the two names of my char in my account but it displays only one Here is the code: prontera,158,174,4 script Account Checker 88,{ mes "Please input a valid character name"; input .@playername$; query_sql "SELECT `account_id` FROM `char` WHERE `name` = '"+escape_sql(.@playername$)+"'",.@accountid; if (!.@accountid) { next; mes "The name is invalid!"; close; } else next; query_sql "SELECT `name` FROM `char` WHERE `account_id`="+.@accountid, .@whoischar$; // Take Locations setarray .@name$[0],.@whoischar$; // Generate Menu for (set .@a, 0; .@a < getarraysize(.@name$); set .@a, .@a + 1) { set .@menu_num$[getarraysize(.@menu_num$)], .@name$[.@a]; set .@menu_index[getarraysize(.@menu_index)], .@a; } // Generate the Menu String set .@menu$, .@menu_num$[0]; for (set .@a, 1; .@a <= getarraysize(.@menu_num$); set .@a, .@a + 1) { set .@menu$, .@menu$ + ":" + .@menu_num$[.@a]; } // Query Selection set .@a, select(.@menu$) - 1; goto L_Char; L_Char: mes "..."; close; end; } thx!! any help would be greatly appreciated!
  17. iset mo po yung script_custom.conf mo like this npc: npc/custom/(filename).txt
  18. try to install the MySQL in different path that's what I do when i encountered that thing hehe example: "My Documents" instead of "Program Files"
  19. download the sprite name generator here rathena.org/wiki/Custom_weapons
  20. try to check the conf again and check if you already have the correct "packet_db" and also the client date in src/common/mmo.h
  21. it should be ./athena-start start/restart/stop
  22. Client Side Edit this files: lua files/skillinfoz/skilldescript.lua
×
×
  • Create New...