Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/29/14 in all areas

  1. Hi everyone, i'm here to tell you that Green Peach is BACK ! OoooohYeaaaah Link : http://www.green-peach.net/ At the moment, there are not all that I created from the beginning because I put everything in order before sharing. Trickster Online mobs are very neat but I still have to manage some data. The novelty is the Pokemon Sprite section ! In short, the website will fill in with my old and new creations. See ya! Name : Bulbizarre Game : Pokemon File Size: 529 KB Author: ToZorMan Download : Mob - Bulbizarre [ToZorMan].zip Link : www.green-peach.net ----------------------------------------------------------------- Name : Herbizarre Game : Pokemon File Size: 536 KB Author: ToZorMan Download : Mob - Herbizarre [ToZorMan].zip Link : www.green-peach.net ----------------------------------------------------------------- Name : Addax Game : Trickster Online File Size: 668 KB Author: ToZorMan Download : Mob - Addax [ToZorMan].zip Link : www.green-peach.net
    1 point
  2. /* CREATE TABLE `ragnarok_logs`.`bst_market_log` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `name` VARCHAR(30) NOT NULL DEFAULT '', `message` VARCHAR(150) NOT NULL DEFAULT '', `time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE = MyISAM DEFAULT CHARACTER SET = utf8; */ - script bst_atcommand -1,{ OnInit: bindatcmd "bst",strnpcinfo(0)+"::OnCommand"; end; OnCommand: if ( !getstrlen(.@atcmd_parameters$) ) { message strcharinfo(0), "Please, enter a message (usage: @bst <message>)."; end; } if ( @bst_delay + 1800 > gettimetick(2) ) { message strcharinfo(0), "There is a 30 min delay of using this command again"; end; } @bst_delay = gettimetick(2); .@message$ = implode( .@atcmd_parameters$," " ); announce "[Market] "+ strcharinfo(0) +" : "+ .@message$, bc_all, 0x9999FF; query_logsql( "INSERT INTO `bst_market_log` ( `name`, `message` ) VALUES ( '"+escape_sql(strcharinfo(0))+"', '"+escape_sql( getstrlen(.@message$)>150?substr(.@message$,0,149):.@message$ )+"' );" ); end; }
    1 point
  3. You could try contacting the webhost (seems like stablehost.com), and also file a DMCA request with Google to get the site deindexed.
    1 point
  4. Hi SkittleNugget, where have you been? Have you import the required .sql on the /sql-files/upgrades/ folder?
    1 point
  5. Check Wise Old Woman NPC, file location should be at: https://github.com/rathena/rathena/blob/master/npc/custom/card_remover.txt Change zeny cost, Star Crumb and Yellow Stone to desire item requirement. This topic should be at Request, not Support...
    1 point
  6. https://github.com/rathena/rathena/blob/master/src/map/pc.c#L2729 it means you have an item bonus that is not define at the constant https://github.com/rathena/rathena/blob/master/db/const.txt#L479 all these are constant for example: you can actually do bonus 13, 10; instead of bonus bstr, 10; both of them works the same for your error message you must have used a wrong constant name, which are not defined in the const.txt example like bonus batkkrange, 5; <-- batkkrange is not a defined constant, its a typo, thus it is read as 0 so try to look for an item that has something like bonus <something>, 50;
    1 point
×
×
  • Create New...