

rawn3cr0
Member-
Content Count
83 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout rawn3cr0

-
Rank
Friendly
Informations
-
Gender
Male
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Up
-
I have this problem
-
open bug in NewPetSystem in pet size please help
rawn3cr0 replied to kingshero's question in Questions & Answers
I have same problem -
How i can modify this from: /search_in_shops (VNUM) ex /search_in_shops 189 in... /search_in_shops (VNUM) (ITEM-ID-from shop table) ex /search_in_shops 189 50 To not find all items with vnum just one item with specified id. struct FSearch { FSearch(LPCHARACTER ch, int Vnum) : m_ch(ch), itemVnum(Vnum) { } void operator () (LPENTITY ent) { if (ent->IsType(ENTITY_CHARACTER)) { LPCHARACTER ch = (LPCHARACTER) ent; if (ch->GetRaceNum() !>= 30000 && GetRaceNum() <= 30007) //umutk kaşmir return; char szQuery[1024]; sprint
-
open Item on shop after delete from db
rawn3cr0 replied to rawn3cr0's question in Questions & Answers
In Ken offlineshop db refresh instantly. How i can make to great shop same? -
open Item on shop after delete from db
rawn3cr0 replied to rawn3cr0's question in Questions & Answers
Yeah..? -
How i can fix this bug? Item on shop after delete from db. Offlineshop great!
-
ACMD(do_shop_delete) { char arg1[256]; one_argument(argument, arg1, sizeof(arg1)); if (!*arg1) { ch->ChatPacket(CHAT_TYPE_INFO, "Usage:"); ch->ChatPacket(CHAT_TYPE_INFO, "/delete_shop <type> <arg> "); ch->ChatPacket(CHAT_TYPE_INFO, "Types:"); ch->ChatPacket(CHAT_TYPE_INFO, " id - Delete item from shop using ID"); ch->ChatPacket(CHAT_TYPE_INFO, "Example:"); ch->ChatPacket(CHAT_TYPE_INFO, " /delete_shop id 1"); return; } if (!strcmp(arg1, "id")) { SQLMsg * pkMsg(DBManager::instance().DirectQuery("delete from player_shop_items WHERE id='%s'",
-
Im not now at pc ....
-
How i can make a in game command in source like: /delete_item 280 where 280 is item id from offlineshop. I try something last night but dont work..
-
Up.
-
How i can make a command to reload items from offlineshop by great? I try: /update_shop <shop id> - Reload shop items when you edit it in MySQL but don't work
-
open Teleport with x and y from db in quest
rawn3cr0 replied to rawn3cr0's question in Questions & Answers
Solved -
How i can teleport with x and y from db in quest?