Jump to content

daL

Members
  • Posts

    14
  • Joined

  • Last visited

Posts posted by daL

  1. On 1/31/2016 at 6:19 PM, PandaLovesHamster said:

    So basically whoever killed the big bad boss gets all the rewards for himself?

     

    You can fix it by adding a quest that is missing from the quest_db

    thanks man u help full ,, yes after that missing part added now my OGH WORKS FINE.

     

  2. On 3/23/2022 at 1:27 AM, Functor said:

    @unnamed What is your EXE version?

    @Functorsince i cant message u, bcause u cannto receive message so i think i will chat u here, im ur customer before im using gepard start at 2018 and today i reset my src - to fresh src, but the gepard setting not work, when i type example : @gepard_block_nick  (but the command display as unknown command) please guide me to installations, im still have the src old one that have gepard command, but i want to use fresh one, please guide me. thanks Mr. Functor.

  3. //===== Hourly Points Script =========================================
    //===== By: ==========================================================
    //= GorthexTiger modified by Nibi modified again by Winz
    //====================================================================
    
    -	script	hourlypoints	-1,{
    OnPCLoginEvent:
    	addtimer .timer,"hourlypoints::OnPointGet";
    	end;
    	
    OnPointGet:
    	while(checkvending() >= 1 ) {
    		sleep2 .delay;
    		dispbottom set(.@mes$,"The loyalty reward event halted because you were vending.");
    	}
    	set #CASHPOINTS, #CASHPOINTS + .point_amt;
    	dispbottom "You received "+.point_amt+" Cash points by staying in game for 5 minutes";
    	
    	addtimer .timer,"hourlypoints::OnPointGet";
    	end;
    
    OnInit:
    	set .timer, 1000*60*5; //Timer in milliseconds.
    	set .point_amt, 10; //Normal points gained.
    	set .delay, 1000; //Delay for idle re-check check.
    }
×
×
  • Create New...