Gerz
Members-
Content Count
59 -
Joined
-
Last visited
-
Days Won
1
Gerz last won the day on September 3 2016
Gerz had the most liked content!
About Gerz
-
Rank
Advanced Member
Recent Profile Visitors
3754 profile views
-
Cyro reacted to a comment on a file: Server Database Editor
-
Miнαєl reacted to an answer to a question: Enabling HighJump on noteleport mapflag
-
edit!, my bad sorry!
-
AnnieRuru reacted to a post in a topic: Add *pcblockattack *pcblockskill *pcblockchat *pcimmune script commands
-
@@AnnieRuru how about this? /** * pcblock <account_id>, <value>, <type> * <value>: 1 = on, 0 = off * <type> can be: * 0 = block move * 1 = block attack * 2 = block skill * 3 = block chat * 4 = immune attack **/BUILDIN(pcblock) { int id, flag, type; TBL_PC *sd = NULL; id = script_getnum(st,2); flag = script_getnum(st,3); type = script_getnum(st,4); if( id ) sd = map->id2sd(id); else sd = script->rid2sd(st); switch( type ) { case 0: sd->state.blockedmove = flag > 0; break; case 1: sd->state.blockedattack = flag > 0; break; case 2: sd->state.blockedskill = flag > 0; break; case 3: sd->state.blockedchat = flag > 0; break; case 4: sd->state.monster_ignore = flag > 0; break; } return true;} BUILDIN_DEF(pcblock,"iii"),
-
@@AnnieRuru welcome back!
-
OnPCDieEvent:OnPCLoadMapEvent:heal 100,100;end;mapflag prontera loadevent something like this :v
-
Lord Ganja reacted to an answer to a question: Enabling HighJump on noteleport mapflag
-
if( strcmp(map->list[src->m].name,"pvp_room") != 0 && map->list[src->m].flag.noteleport && !(map->list[src->m].flag.battleground || map_flag_gvg2(src->m)) ) {
-
cannot use shadow jump and highjump on a pvp cell
Gerz replied to Lord Ganja's question in Source Support
change sd->bl.m to src->m -
easy to make this script but that i told you, but more query :v with # account_base secondly, select query in account_reg_number is not real time update
-
becuz if you use account base, '#' sometimes may not produce correct character names since rid means account id :v
-
prontera,100,100,4 script Zeny Ranking 100,{ mes "[Zeny Ranking]"; mes "Top " + .MaxShow + " richest in the server:"; query_sql "select `name`,`zeny` from `char` where `zeny` > 0 order by `zeny` desc limit " + .MaxShow + "", .@name$, .@zeny; for( .@i = 0; .@i < getarraysize(.@zeny); .@i++ ) mes "~ [.@i + 1] ~ " + .@name$[.@i] + " | Zeny: " + .@zeny[.@i] + ""; close;OnInit: .MaxShow = 5; end;}
-
Do not use # var for ranking list :v
-
Yes, it will recovery 20% more hp for Ygg berry if you equipped with this card
-
@ firstly, in case you're using wrong function :v, do not work like a machine, just view code! second, you want to make bonus script to add bonus to extract item id or to all healing sp items? my code work to increase % sp healing for all healing items :v bonus bAddItemSpRate,n; Increases SP recovered by n% for healing items. Update ver2 :v bAddItemSpRate_v2.diff bonus to extract item id: bonus2 bAddItemSpRate,id,n; Increases SP recovered by n% for item id/ig
-
iCORE reacted to an answer to a question: [help] sp healing script
-
@@Lord Ganja not test yet, test yourself :v, if work + rep to me! mapzone_increase_max_mobhp_rate.diff
-
prontera,100,100,0 script LahEffect -1,{end;OnInit: initnpctimer; end;OnTimer5000: misceffect EF_FIREWALL; initnpctimer; end;}