[CODE]
void usepanto(string modreq)
{
item p = $item[portable pantogram];
if ( item_amount(p) == 0 )
{
return;
}
if ( get_property("_pantogramModifier") != "" )
{
return;
}
boolean use_pp()
{
string upp = visit_url("inv_use.php?pwd&which=99&whichitem=9573");
if ( upp.index_of("You've already summoned") > -1 )
{
return false;
}
return true;
}
if ( kl && !get_property("aaa_ARLibPantoItems").to_boolean() )
{
set_property("aaa_ARLibPantoItems", "true");
cli_execute("arl.ash panto");
}
#http:
#modreq values
#barffarm = Muscle: 10, Stench Resistance: 2, Maximum HP: 40, Meat Drop: 30 [taco shell 173], Combat Rate: 5
#meat+c = Muscle: 10, Stench Resistance: 2, Maximum HP: 40, Meat Drop: 30 [taco shell 173], Combat Rate: 5
#barffarm60 = Muscle: 10, Stench Resistance: 2, Maximum HP: 40, Meat Drop: 60 [porquoise 706], Combat Rate: 5
#meat60+c = Muscle: 10, Stench Resistance: 2, Maximum HP: 40, Meat Drop: 60 [porquoise 706], Combat Rate: 5
#%2C = comma
#mafia will encode a '%' sign as %25 if used in the url - so %2C is submitted as %252C
string getpants = "";
if ( modreq == "barffarm" || modreq == "meat+c" )
{
if ( logrtrv(1,$item[taco shell]) )
{
if ( use_pp() )
{
getpants = visit_url("choice.php?whichchoice=1270&pwd&option=1&m=1&e=5&s1=-1%2C0&s2=173%2C1&s3=-2%2C0",true,true);
}
}
}
if ( modreq == "barffarm60" || modreq == "meat60+c" )
{
if ( logrtrv(1,$item[porquoise]) )
{
if ( use_pp() )
{
getpants = visit_url("choice.php?whichchoice=1270&pwd&option=1&m=1&e=5&s1=-1%2C0&s2=706%2C1&s3=-2%2C0",true,true);
}
}
}
if ( getpants == "" )
{
getpants = visit_url("choice.php?whichchoice=1270&pwd&option=2");
}
else
{
bigp("PANTO: "+get_property("_pantogramModifier"),"green",3);
}
return;
}
[/CODE]