Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/23/14 in all areas

  1. I'm so sorry, i just added something that i shouldn't tested and working, use this please - script arriving -1,{ OnPCLoginEvent: if ( !#new_account ) { announce "Hey "+strcharinfo(0)+" has just arrived! Welcome and have fun!",bc,0x33FF33; dispbottom "Hello my friend, Welcome to the server, i hope you make a lot of friends and have fun, once more, welcome!!"; #new_account = 1; } else end; } by the way, did you make sure to tab in the first line? line 1 - script arriving -1,{ when you copy paste, the tabs does not are copied, so you need to tab manually -<tab>script<tab>arriving<tab>-1,{ hit tab on your keyboard where it says "<tab>" of course don't include the word "tab" and the " < > " here is a screen of how it appears (hit the spoiler button. Why? because i love it! well, and because the image is large hehe (: ):
    2 points
  2. Autotrade Persistence & Live Vendor Data 27cbc7f brings two major vending features to rAthena. Live Vendor Data All vending data is now stored in SQL tables `vendings` and `vending_items`, making the data easily accessible to third party applications. This makes it possible to display and search through player shops on web pages or control panels without any server modifications. The vending data can also be accessed through scripts, which opens similar possibilities for players to search for shop items. [spoiler=Table Structures:] CREATE TABLE IF NOT EXISTS `vending_items` ( `vending_id` int(10) unsigned NOT NULL, `index` smallint(5) unsigned NOT NULL, `cartinventory_id` int(10) unsigned NOT NULL, `amount` smallint(5) unsigned NOT NULL, `price` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `vendings` ( `id` int(10) unsigned NOT NULL, `account_id` int(11) unsigned NOT NULL, `char_id` int(10) unsigned NOT NULL, `sex` enum('F','M') NOT NULL DEFAULT 'M', `map` varchar(20) NOT NULL, `x` smallint(5) unsigned NOT NULL, `y` smallint(5) unsigned NOT NULL, `title` varchar(80) NOT NULL, `autotrade` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; Autotrade Persistence Vendors in auto-trade mode (@autotrade/@at) will now automatically be logged in after a server restart. In other words, it is no longer necessary for players to re-open their shops following each reboot or maintenance, made possible due to saving of vending data. This feature can be disabled in conf/battle/feature.conf. [spoiler=Options:] // Autotrade persistency (Note 1) // Should vendors that used @autotrade be restored after a restart? feature.autotrade: on // In which direction should respawned autotraders look? // Possible values are from 0-7 // Default: 4(South) feature.autotrade_direction: 4 // Do you want your autotraders to sit? (Note 1) feature.autotrade_sit: yes Credits Thanks to @Lemongrass for coding this update, and @Ind for the original idea. Don't forget to run sql-files/upgrades/upgrade_20140114.sql!
    1 point
  3. Hello here is another map i made and it was a small version of prontera 2. hope you like it its been so long since i post a map here xD Video of the map Screenshots Thank you!
    1 point
  4. May I suggest a text file on the sql-files/upgrades folder, that gives a hint of what that particular *.sql do. Or a sql table only for server information, that contains which .sql upgrades they have merged (imported) on their database, so the server owner knows there are some .sql files that must be imported.
    1 point
  5. Recently i was facing an issue with newer clients that doesn't allow space in guild names. With ollydbg, I figure out how to allow space and I'm sharing: Open your hexed with a hex editor and search for this hex: Replace for: The 20 hex above is the space string (" ") , I changed it to "!" and If you want change to another just put the hex code in that position. Note: Tested in 2012-05-25-RagexeRE.
    1 point
  6. @Emistry already having 2nd highest reputation in this forum lol in just few weeks you gonna bypass @Jman soon how about let me just say ... this already fixed ?? I not even sure about this already lol
    1 point
  7. 1 - Você pode utilizar algum ticket que não é muito utilizado no seu servidor e modificar apenas seu nome e descrição para Ticket Vip e claro, depois procurar o id na item_db e configurar o seu ticket. 2 - A tabela, você pode utilizar : ALTER TABLE `login` ADD `diasvip` INT( 11 ) NOT NULL DEFAULT '0'; Espero ter ajudado, Abraços, John. ###################################################################################################### 1 - You can use any ticket which is not much used in your server and modify only their name and description for VIP Ticket and, of course, after looking at the id item_db and configure your ticket. 2 - The table, you can use: ALTER TABLE `login` ADD `diasvip` INT (11) NOT NULL DEFAULT '0 '; Hope this helps, Hugs, John.
    1 point
  8. huh that is not possible at all, unless your sql storage table is not properly working (storing data) of moved items what your player did was that he didn't update its Ro, or the last patch you did, that may cause the error since your player didn't update, the item maybe turned blank (when there is no image in the item folder of the data) i guess the item correctly moved to the storage ir the player keeps it in its inventory if you can store items in your storage and you can take them, leave them there or see them, then there is no way that items may get "lose/disappearing" as a far as i know tell the player to update the patch or the Ro and then maybe that will help
    1 point
  9. skill_cast_db.txt //-- AS_SONICBLOW 136,0,3000,2000,0,5000,0,-1 <- 3 secs delay please dont forget to +1 if this helps
    1 point
  10. Finished in 5d08795. npc/re/quests/newgears/2012_headgears.txt
    1 point
  11. I agree with Sanasol, sadly this tool is easily bypassed at the moment. Its something I have heard of with some of my contacts, and yes I work for a lot of servers. Edit: and btw, you people, you should be more thankful that someone is taking its time to explain it to you, rather than being so refusing. Anyway, its your money at the end.
    1 point
  12. Work on this has begun so expect it in the near future.
    1 point
  13. Berhubungan dengan commit saya di d35ac5a, ada sebagian item yang kemungkinan gak ada di kRO, dengan asumsi sebagai berikut: Item tidak tercantum pada item_db rAthena. Meski saya sudah tambah di server-side, item masih unknown (meskipun pakai pure kRO grf, non-translated) Jadi saya berusaha agar pengguna rAthena yang mau pakai NPC trader tersebut bisa menambahkan sendiri (secara manual) file-file item untuk client-side. Untuk client di bawah 2012-04-10, saya sudah sediakan daftar item yang harus ditambahkan di sini: https://github.com/pservero/idro-client-files/tree/master/data_diffs/rA-d35ac5a/data Sedangkan untuk client di atas versi itu, bisa menambahkan sendiri ke System\itemInfo.lua masing-masing dengan isi dari lua file ini: https://github.com/pservero/idro-client-files/tree/master/data_diffs/rA-d35ac5a/System/itemInfo.lua Untuk spr dan act file, bisa diambil dari direktori texture dan sprite Sekali lagi saya ingatkan, jangan copas/timpa file yang sudah ada di folder kalian, tambahkan saja baris yang ada ke file client kalian masing-masing.
    1 point
  14. 1 point
×
×
  • Create New...