Existing players used to logging in with their character name and moo password must signup for a website account.
- Fogchild1 5s
- SmokePotion 51s Right or wrong, I'm getting high.
- Raven 14m I lost myself, in the dark charade.
- Visitor_Guest 15m [Welcome to Sindome]
- Rillem 1m Make it personal.
- Archangel212168 8m
- Soltan 13m
- freezeway3k 5s
- Woeful 1m
- Sulfurado 34m
- Hivemind 8s
a Mench 52m Doing a bit of everything.
- zxq 10s Tools: https://ansicolortool.neocities.org
- PsycoticCone 7m
- xXShadowSlayerXx 44m
- JanekSembilan 54s
- Pladdicus 45s uh
- Fay 17m
- hex 23s
- Wulf 42s
- Vanashis 9m
- BlackSoul 5m
- FluffyPuff 18m
And 30 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

Idea for small scale gangs

We should have more small time street gangs. Like say their total numbers are like 12 strong, maybe write a script so that when you talk to them, and say something like…


Player"Yo G, you hook me up wit some V-202?"
Ganger A responds with "That will cost you 1000 chyen"
Player pays ganger and takes his V-202 from Ganger A.

I'd say more about, but maybe when I get home.

Or, you could buy drugs from the PC dealers out there.
The idea's got a lot of merit.

The gangers could sell it on the streets, but deal it in quanity to a few select players, who could in turn undercut the gangs.

Talk about it some more. Let's see how you would design this script.

-Kevlar

On the gangs idea, we could get some of the smaller gangers roaming the streets, just like the ambient population but with a table of possible actions (scripts) about what he would do randomly. Something like:



if NoEnemyAround then

  r = random(x);

  if r = 1 then
     callScript(randomWalk)
  else if r = 2 then
     callScript(graffitiTag)
     callScript(randomWalk)
  elseif r = 3 then
     callScript(inciteChaos)
     callScript(randomWalk)
  elseif r = 4 then
     callScript(shoutObscenity)
     callScript(randomWalk)
  elseif r = 5 then
     callScript(mugNearestPerson)
     callScript(runAway)
  endif

else

  int n = callScript(countEnemy)
  int a = callScript(countAlly)

  if n > a then
     if n/a > 3 then
         callScript(runAway)
     elseif n/a > 2 then
         callScript(callForBackup)
         callScript(kickEnemyAss)
     endif
  else if a > n then
         callScript(kickEnemyAss)
  else
         callScript(callForBackup)
         callScript(kickEnemyAss)
  endif
endif

(Disclaimer that isn't Babble-On just some lazy way to show a logic)