MrSky
Members-
Content Count
25 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by MrSky
-
patcher Elurair, v2.16.2.434 - last updated 2024/08/11
MrSky replied to Ai4rei's topic in Client-Side Releases
It would be great if it could support THOR files and encrypted grf so we could use this instead of Thor Patcher, without those, this patcher would only work for official data and official servers -
2018-04-02 and Hercules dont have a VIP system
-
It is possible to make a vote for points system which check if it was realy voted before give points? If it is, someone has it or know how to do?
-
Hello guys, there is any event label triggered when buying on this cash shop? http://herc.ws/board/topic/367-introducing-cash-shop-support/
-
I will search it so #edit A check on getmobdata can be made to check if the monster is attacking/chasing anything?
-
@@Dastgir Oh ok i will update it asap *-* @@AnnieRuru Thnx annie, i made it work with one of yours mob_controller ^^
-
Hello AnnieRuru, i'm getting this error: battle_check_target.obj : error LNK2019: unresolved external symbol _assert_report referenced in function _battle_check_target_post My hercules is from 2014, i dont know if this is the problem :3
-
Anyone know how make this work? set .@mob1, bg_monster ( 1, "bat_c01", 100, 103, "Poring 1", 1002) ;set .@mob2, bg_monster ( 2, "bat_c01", 104, 103, "Poring 2", 1002) ;sleep 500 ;unitattack .@mob1, .@mob2 ;unitattack .@mob2, .@mob1 ;
-
Can i make Vote4Points Addon rule for Mac Address instead of IP? Or maybe both? Anyone know how?
-
Thnx man, i searched but never found a complet one
-
Hi guys, i just done Harmony patch, and compiled with Visual C, it worked all fine, but on Linux it shows Already searched a lot but cant find solution, anyone can help? @Done can close
-
Hey guys! Someone have/can make/help make a bg entrace npc, that can use this or any similar system, where i could enter with command instead of chatroom (i can make the command tho), to enter on Hercule's basic battlegrounds arenas like Tierra ou Flavius? I mean, i dont need a new bg, i just need a npc to enter on existing ones like Tierra or Flavius...
-
Anyone can help?
-
I'm trying this now, but dont show <?php $sql = "SELECT *value* FROM {$server->loginDatabase}.`global_reg_value` where `account_id` = `2000000` and `str` = `#CASHPOINTS`"; $sth = $server->connection->getStatement($sql); $sth->execute(); $cash = $sth->fetchAll(); ?> <span class="balance-text">ROPs</span> <span class="balance-amount"><?php echo number_format($cash) ?></span>
-
I want show people cash on Donate page of fluxcp, instead of credit point <span class="balance-text">ROPs</span><span class="balance-amount"><?php echo number_format(ropS) ?></span>
-
Hi guys! How can i show a variable from mysql on fluxcp with php? I.e. show #cashpoint on fluxcp?
-
Did you rchanged all "0xFF8C69"; to 0xFF8C69?
-
Hi guys, my error is firstly i create a bg (.team), then create more 2 with te same variable used by hercules' bg, but always when i do this, the second person to enter, which goes for team 2, always leave bg just after enter, anyone can find the bug? D= OnStart: $@TierraBG2_id1 = createbgid( "bat_a02",50,374, "start#bat_a02::OnGuillaumeQuit","" ); $@TierraBG2_id2 = createbgid( "bat_a02",42,16, "start#bat_a02::OnCroixQuit",""); getbgusers(.team); for (set .@i,0; .@i < $@arenamembersnum; ++.@i) setbgid ( .@i % 2 )? $@TierraBG2_id1 : $@TierraBG2_id2,$@arenamembers[.@i]; if ($@bgqueueon == 0) donpcevent "start#bat_a02::OnEnable"; bg_warp $@TierraBG2_id1,"bat_a02",352,342; bg_warp $@TierraBG2_id2,"bat_a02",353,52; if ($@bgqueueon == 0) announce "It Started!",bc_all,0x00CED1; if ($@bgqueueon == 0) set $@bgqueueon,1; bg_updatescore "bat_a02",0,0; end;
-
Im having a problem on this script OnInit: bindatcmd "inittime",strnpcinfo(3)+"::OnInitTime"; bindatcmd "checktime",strnpcinfo(3)+"::OnCheckTime"; First it init the timer attached with the player. OnInitTime: attachnpctimer; initnpctimer; then when i try check how many time passed OnCheckTime dispbottom "Last "+getnpctimer(0)/1000+" seconds."; It always shows 0, only show correct time when i remove "attacnpctimer", but i want a timer attached to player not to npc... @edit Nvm, couldnt fix it, but i did a "trick" to do the same, can close it
-
Thats it man! thnks !! i dont know how i didnt see it haha
-
No, its he can have only Red Potions in inventory to do something... if he have something that is not Red Potion, he cant enter
-
Hey guys, how can i check if player have only one item in inventory? I.e he can do something only if he have only Apple in his inventory. Or restrict all itens expect one?
-
On atcommand.c, i want to make a timer like this: On use @reloadscript: broadcast 1;(TIMER with 2 seconds)broadcast 2;...then it reload scripts... I know how make broadcasts, but i need help to make the timer D= Anyone can help? =)