Jump to content

  •  

Color Picker

Member Since 03 Sep 2014
Offline Last Active Jun 27 2015 02:36 PM
-----

Posts I've Made

In Topic: My Patcher

08 December 2014 - 11:18 PM

Very nice, I like the first one!

Any Idea how to make a setup button like yours?

 

[Button:Exit]Default='images/close_default.png'OnHover='images/close_hover.png'OnDown='images/close_down.png'Left=577Top=190Hook='Exit'

Wonder what's the codes be like..  :p_conf:


In Topic: Requesting a simple scripts about doing quest together

08 December 2014 - 10:50 PM

if ($emperium < 100) { //<-- emperium_donation didn't work	.@needed = 100 - $emperium; //<-- same as above	mes "This dungeon is still locked.",	    "We need more donations to unlock it.",	    "We accept donations in the form of Emperiums.";	next;	mes "We need, "+ .@needed +" more donations.";	mes "Can you support us?";	next;	if (select("Yes, I'd like to donate.", "Sorry, maybe another time.") == 2) {		close;	}	mes "How many Emperiums would you like to donate?";	next;	switch(select("1 Emperium", ((.@needed >= 5)?"5 Emperium":""), ((.@needed >= 10)?"10 Emperium":""))) {		case 1:			mes "Are you sure you want to donate 1 Emperium?";			next;			if (select("Yes, take it.", "No, I change my mind.") == 2) {				close;			}			if (!countitem(714)) {				mes "I'm sorry, but you don't have any Emperium";				close;			}			delitem 714,1;			$emperium += 1; // <-- error on cmd, did a changes			break;		case 2:			mes "Are you sure you want to donate 5 Emperium?";			next;			if (select("Yes, take it.", "No, I change my mind.") == 2) {				close;			}			if (countitem(714) < 5) {				mes "I'm sorry, but you don't have any Emperium";				close;			}			delitem 714,5;			$emperium += 5;			break;		case 3:				mes "Are you sure you want to donate 10 Emperium?";			next;			if (select("Yes, take it.", "No, I change my mind.") == 2) {				close;			}			if (countitem(714) < 10) {				mes "I'm sorry, but you don't have any Emperium";				close;			}			delitem 714,10;			$emperium += 10;			break;	}	close2;	callsub OnDonation;	end;}mes "All donation requirements have been completed.";mes "Would you like to enter the dungeon?";if (select("Yes, take me there.", "No thank you.") == 2) {	close;}warp "pay_dun00",0,0;close;OnDonation:if ($emperium < 100) { return; }announce "All 100 Emperium Donations have been completed. The dungeon is now able to be accessed!",bc_all|bc_blue;return;end;}

Thanks Oceon! You made my day  :rolleyes:

Btw how does this data stored? I was searching it in global_red_value but nothing seems to stored there...? Found it in mapreg


In Topic: Fluxcp donation doesn't work

08 December 2014 - 10:22 PM

Searched especially for you... it's PaymentNotifyRequest.php

 

Working Links : https://raw.githubus...tifyRequest.php

 

 

 

Thanks me if it does work  :)


In Topic: Fluxcp donation doesn't work

08 December 2014 - 08:56 PM

1. Make sure your paypal account is typed correctly, even capital letter typo won't work.

2. Make sure your paypal account at least few weeks old and verified.

3. Check your paypal logs, if there's error, see what happened to it.

4. Some hosts i.e VPS users are blocked paypal's IP.

5. Make sure your notify link have set enabled, and CP using the same link with it.

6. Try to have updated paymentnotify.php(not the actual name) from somewhere.


In Topic: Disable monster drop when killed by a GM

08 December 2014 - 08:17 PM

Simply @autoloot it lol!