yes it is added correctly, because it is the same as the .grf file that I used that works. basically a transfer of my custom data file. I have double checked.
maybe the reason of it wasn't been read is because it must be disabled the read data folder first
download the theme you like
upload it under the theme folder
set the folder that you upload to be default
or
change it on application theme name
wish i have help if you need more specific guide just pm me here
or
message me on skype
skype: ceejay.abne
didn't I give the link?well, I'll apply this in my next commit.
thank you.
yeah sure just don't forget to mention me LOL
didn't I give the link?well, I'll apply this in my next commit.
thank you.
there's a little error in that in itembounding you cannot exceed 4 but i know you can fix it LOL
i only knew a npc that you typed in you can do it once a week
try this! don't forget to mark as solved and my contribution point
poring_w02,56,82,4 script ADMINLOGS 915,{
set .@GMLevel,70;
set .@npc$,strnpcinfo(1);
if (getgmlevel() < .@GMLevel) close;
mes .@npc$;
mes "Input the item id";
next;
input .@id;
next;
if (getitemname(.@id) == "") {
mes .@npc$;
mes "Invalid id number";
close;
}
mes .@npc$;
mes "So, you want to delete " +getitemname(.@id)+ "?";
next;
if (select("- Yes:- No") - 1) close;
mes .@npc$;
mes "Processssinnggg...";
next;
query_sql("DELETE FROM `auction` WHERE `nameid` = '" +.@id+ "'");
query_sql("DELETE FROM `cart_inventory` WHERE `nameid` = '" +.@id+ "'");
query_sql("DELETE FROM `guild_storage` WHERE `nameid` = '" +.@id+ "'");
query_sql("DELETE FROM `inventory` WHERE `nameid` = '" +.@id+ "'");
query_sql("DELETE FROM `mail` WHERE `nameid` = '" +.@id+ "'");
query_sql("DELETE FROM `storage` WHERE `nameid` = '" +.@id+ "'");
mes .@npc$;
mes "Done!";
close;
}