quesoph
Members-
Content Count
562 -
Joined
-
Last visited
-
Days Won
6
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by quesoph
-
prontera,146,168,4 script Mall Warper 4_M_KNIGHT_GOLD,{ mes "[Mall Warper]", "Hi! I can warp you to the mall", "where you can buy free items,", "but remember that when testing is", "done, we will remove this item mall", "and all accounts will be wiped.", "Proceed?"; next; if(select( "Yes","No" ) == 2 ) close; warp itemmall,179,40; end;}
-
Sigurado ka bang na compile mo? kase kung na compile mo hinde ganyan ang lalabas sa cmd.
-
oh god thank you
-
Pantera - Cemetery Gates
-
Extended Vending System UPDATED rev14395! by Lilith
quesoph replied to quesoph's topic in Source Releases
I cant test right now 'cause I am upgrading my rig.. -
Here is BTS script. What do you want to do with this ? Please elaborate so we can help you.
-
- script xmasjkk -1,{OnNPCKillEvent:for ( .@i = 0; .@i < getarraysize(.maps$); .@i++ ) if ( strcharinfo(3) == .maps$[.@i] ) { .@rand = rand ( 1, 100 ); announce .@rand,0; if ( .@rand <= 10 ) { // 10% chance. getitem .item_id[rand(getarraysize(.item_id))], 1; end; } dispbottom "???"; end; }end;OnInit: setarray .maps$[0],"prt_fild01","prt_fild05","prt_fild06","prt_fild08","prontera"; // add maps here. setarray .item_id[0], 501, 502, 503, 504, 505; //example item id of your custom item. end;}
-
Have you tried to diff your client with this? Disable Ragexe Filename Check
-
Make sure your top and left are correct. Use photoshop's slice tool. Sample [Label:Status]AutoResize = falseWidth=352Height=50Left=105Top=563Alignment='left'FontColor=$000000FontName = 'Arial'FontSize =Text=''Hook='StatusChange'
-
You need to add custom items that contains these letters " M E R R Y C H R I S T M A S " Try this. I haven't tested it. - script xmasjkk -1,{OnNpcKillEvent: if ( strcharinfo(4) != "prt_fild01" ) end; .@rand = rand ( 1, 100 ) if ( .@rand <= 90 ) { getitem .item_id[rand(getarraysize(.item_id))], 1; end; } dispbottom "???"; end;OnInit: setarray .item_id[0], 20000, 20001, 20002, 20003, 20004; //example item id of your custom item. end;}
-
Wrong title dapat kung pano mag checkout. @ts Nice guide
-
opps.xD
-
prontera,150,150,4 script sample 100,{ query_sql "SELECT `name`,`message` FROM `wish`", .@name$, .@message$; // get values from wish table. mes "[ " +strnpcinfo(3)+ " ]"; for (set .@i,0; .@i < getarraysize(.@name$); set .@i, .@i + 1) { mes "^ff0000Name^000000 : " + .@name$[.@i], "^0000ffMessage^000000 : "+ .@message$[.@i]," "; // show name and message. } menu "Write Message",-; input .@input$; // input message query_sql ( "INSERT INTO `wish` (`name`, `message`) VALUES ('" + strcharinfo(0) + "', '"+ .@input$ +"')") ; // insert name and message to sql table. close;OnInit: query_sql "CREATE TABLE IF NOT EXISTS `wish` ( `name` varchar(30) NOT NULL DEFAULT '', `message` varchar(255) NOT NULL DEFAULT '' ) ENGINE=MyISAM"; // create "wish" table if it doesn't exist. end;}
-
i tried to use the hunting mission npc and i got this
quesoph replied to kerbiii's question in Script Support
phpadmin. -
i tried to use the hunting mission npc and i got this
quesoph replied to kerbiii's question in Script Support
[SQL]: DB error - Table 'ragnarok.mob_db' doesn't exist It means you dont have mob_db in your database. try to execute mob_db.sql / mob_db2.sql. and post back. Location: Pre-renewal ../sql-files/mob_db.sql Renewal ../sql-files/mob_db_re.sql -
^ One solution is to try it your self.. try #define MAX_STORAGE 1000
-
I think flooritem is a custom script command.
-
Guide for Windows using MSVC: http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC Guide for Linux. http://herc.ws/wiki/Building_HPM_Plugin_for_gcc
-
[Crash][2013-08-07aRagexe.exe]crash client when click
quesoph replied to youyi1314's question in Client-Side Support
Try to change LangType.. or just don't click it.. -
I think that feature is not yet fully implemented.
-
Use search next time. http://herc.ws/board/topic/205-v20basic-premium-system/
-
How to set that when max zeny was reached it will convert to coins?
quesoph replied to khenma's question in General Server Support
Dunno how to convert it to coins but you may check this out. ../conf/battle/item.conf // Whether to allow buying from vending chars that are at their max. zeny limit.// If set to yes, the rest of the zeny above the char's capacity will disappear.vending_over_max: yes