Minor details (pdb file location, improved debug, npc typo)
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9771 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
4130bdd3b8
commit
71ca66f8b1
@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
|
||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||
|
||||
2007/02/01
|
||||
* Minor details (pdb file location, improved debug, npc typo)
|
||||
* Cleaned up the npcshop(add/del)item script commands, fixed a possible
|
||||
dangling pointer crash caused by their improper use of realloc. They no
|
||||
longer automatically attach the script to the shop, and they will return
|
||||
|
@ -192,7 +192,7 @@ s_Guide:
|
||||
s_Yes:
|
||||
set @tempguide,1;
|
||||
s_Cont:
|
||||
menu "^FF0000Rekenber Corporation",s_Rekenber,"^000000Train Station",s_Train,"Police Station",s_Police,"Bank",s_Bank,"Hotel",s_Hotel,"Airport",s_Airport,"Merchant Guild",s_Merchant,"Jewel Shop",s_Jewel,"Weapon Shop",s_Weap,"Department Store",s_Store,"Cancel",-;
|
||||
menu "^FF0000Rekenber Corporation^000000",s_Rekenber,"Train Station",s_Train,"Police Station",s_Police,"Bank",s_Bank,"Hotel",s_Hotel,"Airport",s_Airport,"Merchant Guild",s_Merchant,"Jewel Shop",s_Jewel,"Weapon Shop",s_Weap,"Department Store",s_Store,"Cancel",-;
|
||||
|
||||
mes "[Lighthalzen Guide]";
|
||||
mes "Please ask me to \"Remove";
|
||||
|
@ -3182,7 +3182,7 @@ int pc_show_steal(struct block_list *bl,va_list ap)
|
||||
itemid=va_arg(ap,int);
|
||||
|
||||
if((item=itemdb_exists(itemid))==NULL)
|
||||
sprintf(output,"%s stole an Unknown Item.",sd->status.name);
|
||||
sprintf(output,"%s stole an Unknown Item (id: %i).",sd->status.name, itemid);
|
||||
else
|
||||
sprintf(output,"%s stole %s.",sd->status.name,item->jname);
|
||||
clif_displaymessage( ((struct map_session_data *)bl)->fd, output);
|
||||
|
@ -73,7 +73,7 @@
|
||||
AdditionalLibraryDirectories="..\lib"
|
||||
IgnoreAllDefaultLibraries="true"
|
||||
GenerateDebugInformation="true"
|
||||
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
|
||||
ProgramDatabaseFile="$(OutDir)\map-server.pdb"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user