Jump to content

chatterboy

Members
  • Posts

    308
  • Joined

  • Last visited

  • Days Won

    2

Community Answers

  1. chatterboy's post in link patch with client was marked as the answer   
    version of your thor? i have that before also bug issue in new thor version.. Try the different version
  2. chatterboy's post in How to search for player IP using player name in mysql? was marked as the answer   
    - script account -1,{ OnInit: // Auto Initialize when the server is Online bindatcmd "acc",strnpcinfo(3)+"::OnWhisperGlobal",99,0; // GM Level can only access this wispher end; OnWhisperGlobal: switch(select("~ Cheack Player Info:~ Quit")){ case 1: mes "---[SYSTEM]---"; mes "Type the User Name"; mes "you wish to check"; input .@charName$; next; // Fetch the player account ID .@size = query_sql ("SELECT `account_id` FROM char WHERE `name` = '"+.@charName$+"';",.@acc_id); if(!.@size){ mes "---[SYSTEM]---"; mes "Info:"; mes " ERROR 404 Player "+.@charName$+" is not found..."; close;} // Fetch information of the Player IGN input ^_^ query_sql "SELECT `userid`, `last_ip`, `email` FROM login WHERE `account_id` = '"+.@acc_id+"';",.@user_id$,.@lastIp,.@emai$; // Visual Ingame.... mes "---[SYSTEM]---"; mes "AccID: "+.@acc_id+""; mes "UserID: "+.@user_id$+""; mes "LastIP: "+.@lastIp+"": mes "Email: "+.@emai$+""; mes "Verifying Successful!!!"; close; case 2: close; }            
  3. chatterboy's post in Flux_Error Failed to write data was marked as the answer   
    Centos 7:
    sudo chown  apache:apache /var/www/html/data/
    sudo chmod -R 777 /var/www/html/data/
    or if you already did in your HTML folder try to log in WinSCP as ROOT then change the property settings of the folder DATA and the TMP, change from ROOT[0] to APACHE then set to 0777 ^_^
  4. chatterboy's post in Flux CP Critical Error "Flux_PermissionError" was marked as the answer   
    [Problem SOLVE]
    I've finaly found the missing piece 
    $ sudo chown -R www-data:www-data /var/www/html ^_^ happy day!!
     
  5. chatterboy's post in Item+ Skill was marked as the answer   
    Dont be offend Sir but your out of place asking help were in rAthena but your asking regarding in Hercules DB  but its ok on my side
    here are the sample with skill
    { Id: 28311 AegisName: "Earring_Of_Sarah_R" Name: "Sarah's Right Earring" Type: 5 Weight: 100 Loc: 136 EquipLv: 145 Refine: false Trade: { nodrop: true notrade: true nocart: true nogstorage: true nomail: true noauction: true } Script: <" skill AL_TELEPORT,1; "> },
  6. chatterboy's post in Error from my database was marked as the answer   
    that happen if the player have a party and no body is with him during hunting  because they are not bothered to left their party
    Tip: Your script is not complete on that part. Add some script that check if the player have a party and he is solo hunting, i fixed this already in my server
     
     
  7. chatterboy's post in Please help me was marked as the answer   
    Compile your server before you start...
  8. chatterboy's post in help to modify this script for healer was marked as the answer   
    //===== rAthena Script ======================================= //= Healer //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Basic healer script. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.1 Aligned coordinates with @go. //============================================================ - script Healer -1,{ .@Price = 0; // Zeny required for heal .@Buffs = 1; // Also buff players? (1: yes / 0: no) .@Delay = 5; // Heal delay, in seconds emotion e_lv; if (@HD > gettimetick(2)) end; if (.@Price) { message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny."; if (Zeny < .@Price) end; if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2) end; Zeny -= .@Price; } specialeffect2 EF_HEAL2; percentheal 100,100; if (.@Buffs) { specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; //repairall if( getbrokenid(1) ) repairall; getinventorylist; while( .@i < @inventorylist_count ){ if ( !@inventorylist_identify[.@i] ){ delitem2 @inventorylist_id[.@i],1,0,0,0,0,0,0,0; getitem @inventorylist_id[.@i],1; } .@i++; } } if (.@Delay) @HD = gettimetick(2) + .@Delay; end; } prontera,162,193,4 duplicate(Healer) Healer#prt 437 izlude,125,148,4 duplicate(Healer) Healer#izl 437 gonryun,156,122,4 duplicate(Healer) Healer#gon 437 Here I modified already
  9. chatterboy's post in Character Select Problem was marked as the answer   
    im sorry to disturb guyz  it was a mistake i forgot my character attach to my event npc... 
     
    im sorry to disturb guyz  it was a mistake i forgot my character attach to my event npc... 
×
×
  • Create New...