Lilith
Members-
Posts
407 -
Joined
-
Last visited
-
Days Won
10
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Lilith
-
Remove the clif_displaymessagecolor function in clif.c. You already have this function.
-
Begin to use rAmod. rAmod already has this feature.
-
Вообще то спрайт содержит в себе все, что он отображает в игре. Тело отдельно, голова отдельно, оружие отдельно, аура отдельно.
-
Можно. http://tortoisesvn.net/downloads.html
-
Есть модификация. http://rathena.org/board/topic/59578-mapflags-noitem-and-noskill2/
-
Прекрасно запускается, без единой ошибки. Попробуй другой http://supportmii.com/ro1/Clients/2012-04-10aRagexeRE.exe
-
Jhosef, sorry. candrop_tick.patch
-
Новые ехе читают настройки с файла в папке SaveData. По умолчанию данная папка находится в корне клиента ( если таковой нет, то необходимо произвести настройку игрового клиента новым сетапом ). Далее - если при диффе ехе стояла опция Read data folder first, то ехе будет читать папку SaveData не из корня, а из папки data. Поэтому, после настройки игрового клиента новым сетапом нужно перед запуском ехе скопировать SaveData в папку data, после чего запускать ехе.
-
Hex - редактирование игрового ехе
-
switch(select("Dark Helmet!:Sparkling Dust!:Bye!")) { case 1: break; case 2: break; case 3: break; }
-
Бывало сталкивался с проблемой образования окончаний у слов, которые обозначают множество того или иного. К примеру, у одного игрока 123 TCG карты, у другого 61 и т.д. Как правильно определить окончание для слова 'карта' в каждом случае? Написал маленькую функцию, думаю, резберётесь. prontera,150,180,5 script Пример 100,{ setarray @word$[1],"карта","карты","карт"; mes "Введите число"; input @c; mes @c+" "[email protected]$[callfunc("Suffix",@c)]; close; } function script Suffix { set [email protected],getarg(0); if( [email protected] == 1 ) return 1; else if( [email protected] > 1 && [email protected] < 5 ) return 2; else if( [email protected] || [email protected] > 4 && [email protected] < 21 ) return 3; else return callfunc("Suffix",[email protected]%10); }
-
-
Failed to authenticate.(5011) with 2012-04-10 Client
Lilith replied to Firdz's question in Client-side Support
Pack your clientinfo.xml in custom.grf -
Index: atcommand.c =================================================================== --- atcommand.c (revision 16385) +++ atcommand.c (working copy) @@ -1372,7 +1372,7 @@ ACMD_FUNC(item) { char item_name[100]; - int number = 0, item_id, flag; + int number = 0, item_id, flag, level, itemid; struct item item_tmp; struct item_data *item_data; int get_count, i; @@ -1399,6 +1399,26 @@ } item_id = item_data->nameid; + + //To Check the item_deny from sql [Vengence] + if(SQL_ERROR == Sql_Query(mmysql_handle, "SELECT * FROM `item_deny` WHERE `itemid` = '%d'",item_id)) + Sql_ShowDebug(mmysql_handle); + else + { + while( SQL_SUCCESS == Sql_NextRow(mmysql_handle) ) + { + char *data; + Sql_GetData(mmysql_handle, 0, &data, NULL); + itemid = atoi(data); + Sql_GetData(mmysql_handle, 1, &data, NULL); + level = atoi(data); + } + } + if (item_id == itemid && pc_get_group_level(sd) < level) + { + clif_displaymessage(sd->fd, "You are restricted from creating this item."); + return -1; + } get_count = number; //Check if it's stackable. if (!itemdb_isstackable2(item_data))
-
Если чтение с папки data стоит, то скопируй папку SaveData из корня в папку data.
-
http://supportmii.com/ro1/Clients/Judas_Setups/2012_Setup/
-
Центральный prtg_cas03
-
Проверил на поринге - работает. 4001,Poring_Card,Poring Card,6,20,,10,,,,,,,,16,,,,,{ d+=1; if( d < 2) { bonus bLuk,2; bonus bFlee2,1; } if (isequippedcnt(4001) == d ) {d = 0;} },{},{} Хорошая смекалка
-
В таком случае была бы ошибка типа И чар сервер бы вообще не запускался
-
conf/inter_athena.conf 107-108 Такое как motd, mob_item_ratio или skill_tree эмулятор будет читать с файлов.
- 1 reply
-
- 1
-
-
Not tested... ... getpartymember(getcharid(1)); for( i = 0; i <= [email protected]; i++ ) if( isloggedin([email protected][i],[email protected][i]) ) g++; if( g == [email protected] ) mes "All party members online"; ...
-
Через черепаху качай - http://svn6.assembla.com/svn/ClientSide/Lua_Project/lua%20files/ В папку data клиента вставляй скачанную папку.